From 7f46e39936dec152942959ea27d8a9659a64deaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=96=E5=8F=AB?= <392494244@qq.com> Date: Thu, 26 Oct 2023 16:50:02 +0800 Subject: [PATCH] 1 --- modules/api/controllers/UserController.php | 3 +- modules/api/models/UserModifyForm.php | 48 ++- runtime/debug/6538e69fce833.data | 141 ------- runtime/debug/6538e6b4eb9fc.data | 141 ------- runtime/debug/6538e6bf0d38f.data | 219 ----------- runtime/debug/6538e6cfefa14.data | 281 -------------- runtime/debug/6538e6fd8e07f.data | 281 -------------- runtime/debug/6538e70feec90.data | 281 -------------- runtime/debug/6538e719e947d.data | 281 -------------- runtime/debug/6538e736032c3.data | 281 -------------- runtime/debug/6538e73b1b690.data | 281 -------------- runtime/debug/653a211734afc.data | 281 ++++++++++++++ runtime/debug/653a21674402d.data | 281 ++++++++++++++ runtime/debug/653a2173e258e.data | 281 ++++++++++++++ ...{6538e74d20f6d.data => 653a217ccd515.data} | 42 +-- runtime/debug/653a219650fa2.data | 211 +++++++++++ runtime/debug/653a21a06fbfa.data | 211 +++++++++++ runtime/debug/653a21a9ee801.data | 281 ++++++++++++++ runtime/debug/653a21b4b2adb.data | 281 ++++++++++++++ runtime/debug/653a21c1526e1.data | 281 ++++++++++++++ runtime/debug/653a21fadf859.data | 281 ++++++++++++++ runtime/debug/653a2231655f1.data | 281 ++++++++++++++ runtime/debug/653a26f089b86.data | 281 ++++++++++++++ runtime/debug/653a27091e481.data | 281 ++++++++++++++ runtime/debug/653a271267aa0.data | 281 ++++++++++++++ runtime/debug/653a272a15881.data | 281 ++++++++++++++ ...{6538e70922519.data => 653a279545b50.data} | 42 +-- runtime/debug/653a27aca516c.data | 351 ++++++++++++++++++ runtime/debug/index.data | 2 +- 29 files changed, 4227 insertions(+), 2242 deletions(-) delete mode 100644 runtime/debug/6538e69fce833.data delete mode 100644 runtime/debug/6538e6b4eb9fc.data delete mode 100644 runtime/debug/6538e6bf0d38f.data delete mode 100644 runtime/debug/6538e6cfefa14.data delete mode 100644 runtime/debug/6538e6fd8e07f.data delete mode 100644 runtime/debug/6538e70feec90.data delete mode 100644 runtime/debug/6538e719e947d.data delete mode 100644 runtime/debug/6538e736032c3.data delete mode 100644 runtime/debug/6538e73b1b690.data create mode 100644 runtime/debug/653a211734afc.data create mode 100644 runtime/debug/653a21674402d.data create mode 100644 runtime/debug/653a2173e258e.data rename runtime/debug/{6538e74d20f6d.data => 653a217ccd515.data} (52%) create mode 100644 runtime/debug/653a219650fa2.data create mode 100644 runtime/debug/653a21a06fbfa.data create mode 100644 runtime/debug/653a21a9ee801.data create mode 100644 runtime/debug/653a21b4b2adb.data create mode 100644 runtime/debug/653a21c1526e1.data create mode 100644 runtime/debug/653a21fadf859.data create mode 100644 runtime/debug/653a2231655f1.data create mode 100644 runtime/debug/653a26f089b86.data create mode 100644 runtime/debug/653a27091e481.data create mode 100644 runtime/debug/653a271267aa0.data create mode 100644 runtime/debug/653a272a15881.data rename runtime/debug/{6538e70922519.data => 653a279545b50.data} (52%) create mode 100644 runtime/debug/653a27aca516c.data diff --git a/modules/api/controllers/UserController.php b/modules/api/controllers/UserController.php index 706812c..0c6f288 100644 --- a/modules/api/controllers/UserController.php +++ b/modules/api/controllers/UserController.php @@ -32,6 +32,7 @@ class UserController extends Controller 'login' => [ 'class' => LoginBehavior::className(), 'ignore' => [ + 'api/user/modify-user' ] ] ]); @@ -81,7 +82,7 @@ class UserController extends Controller $form = new UserModifyForm(); $form->cx_mch_id = $this->cx_mch_id; //商户ID 没看到传参赋值 默认给0 $form->attributes = $post; - $form->user_id = \Yii::$app->user->identity->id; //获取用户登陆ID +// $form->user_id = \Yii::$app->user->identity->id; //获取用户登陆ID $data = $form->modify_user(); return $this->responseHandler($data); } diff --git a/modules/api/models/UserModifyForm.php b/modules/api/models/UserModifyForm.php index 9cfb663..85d35cc 100644 --- a/modules/api/models/UserModifyForm.php +++ b/modules/api/models/UserModifyForm.php @@ -28,7 +28,7 @@ class UserModifyForm extends ApiModel { public $cx_mch_id; - public $user_id; +// public $user_id; public $real_name; public $mobile_phone; public $gender; @@ -66,35 +66,61 @@ class UserModifyForm extends ApiModel if (!$this->validate()) { return $this->getModelError(); } - $user = User::findOne(['id' => $this->user_id]); + + + $form = new LoginForm(); + + $user = User::findOne(['mobile_phone' => $this->mobile_phone]); if (!empty($user->mobile_phone) && !empty($user->is_view)) { - return [ - 'code' => 0, - 'msg' => '已填写', - ]; + $form = new LoginForm(); + $form->cx_mch_id = 0; + $form->username = $user->username; + $form->password = '123456'; + $form->token_type = 3; + return $form->login(); } $t = \Yii::$app->db->beginTransaction(); try { + + $username = User::generateUsername(); + $password = '123456'; + $password_encryption = \Yii::$app->security->generatePasswordHash($password); + + + $user = new User(); + $user->cx_mch_id = 0; $user->real_name = $this->real_name; $user->mobile_phone = $this->mobile_phone; $user->gender = $this->gender; $user->is_view = $this->is_view; + $user->mobile_prefix = '86'; + $user->nickname = $this->real_name; + $user->avatar_url = User::DEFAULT_AVATAR_URL; + $user->access_token = \Yii::$app->security->generateRandomString(); + $user->type = User::TYPE_USER; + $user->username = $username; + $user->password = $password_encryption; + $user->auth_key = \Yii::$app->security->generateRandomString();; if (!$user->save()) { $t->rollBack(); return $this->getModelError($user); } $t->commit(); - return [ - 'code' => 0, - 'msg' => '绑定成功', - ]; + + + $form->username = $username; + $form->password = $password; + $data = $form->login(); + + + return $data; } catch (\Exception $e) { $t->rollBack(); return [ 'code' => 1, - 'msg' => '绑定失败', + 'msg' => '失败', ]; } } diff --git a/runtime/debug/6538e69fce833.data b/runtime/debug/6538e69fce833.data deleted file mode 100644 index d6266bc..0000000 --- a/runtime/debug/6538e69fce833.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:7517:"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:1698227871.820332;i:4;a:0:{}i:5;i:2494576;}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:1698227871.820353;i:4;a:0:{}i:5;i:2495752;}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:1698227871.84517;i:4;a:0:{}i:5;i:4070984;}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:1698227871.848076;i:4;a:0:{}i:5;i:4287432;}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:1698227871.848498;i:4;a:0:{}i:5;i:4289640;}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:1698227871.848739;i:4;a:0:{}i:5;i:4297824;}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:1698227871.850251;i:4;a:0:{}i:5;i:4370104;}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:1698227871.850446;i:4;a:0:{}i:5;i:4370448;}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:1698227871.851005;i:4;a:0:{}i:5;i:4394472;}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:1698227871.851039;i:4;a:0:{}i:5;i:4400864;}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:1698227871.853384;i:4;a:0:{}i:5;i:4625760;}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:1698227871.853394;i:4;a:0:{}i:5;i:4627392;}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:1698227871.875542;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6049928;}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:1698227871.87559;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052360;}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:1698227871.879739;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6138672;}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:1698227871.884814;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6475240;}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:1698227871.89456;i:4;a:0:{}i:5;i:6704264;}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:1698227871.898486;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6840312;}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:1698227871.900376;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6859224;}i:39;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227871857, 1698227871901, 44, 0, 1698227871)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227871.90892;i:4;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:7247152;}}}";s:9:"profiling";s:11070:"a:3:{s:6:"memory";i:7372824;s:4:"time";d:0.1471259593963623;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:1698227871.875608;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6053488;}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:1698227871.87744;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6102648;}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:1698227871.877471;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6102888;}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:1698227871.878529;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6118720;}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:1698227871.879772;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141536;}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:1698227871.880294;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6143920;}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:1698227871.884845;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6476488;}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:1698227871.88548;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6483160;}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:1698227871.89852;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6842432;}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:1698227871.899923;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6865392;}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:1698227871.900404;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6862840;}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:1698227871.900912;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6865976;}i:40;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227871857, 1698227871901, 44, 0, 1698227871)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227871.908964;i:4;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:7245512;}i:41;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227871857, 1698227871901, 44, 0, 1698227871)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227871.942881;i:4;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:7248040;}}}";s:2:"db";s:10268:"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:1698227871.877471;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6102888;}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:1698227871.878529;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6118720;}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:1698227871.879772;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141536;}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:1698227871.880294;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6143920;}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:1698227871.884845;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6476488;}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:1698227871.88548;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6483160;}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:1698227871.89852;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6842432;}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:1698227871.899923;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6865392;}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:1698227871.900404;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6862840;}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:1698227871.900912;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6865976;}i:40;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227871857, 1698227871901, 44, 0, 1698227871)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227871.908964;i:4;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:7245512;}i:41;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227871857, 1698227871901, 44, 0, 1698227871)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227871.942881;i:4;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:7248040;}}}";s:5:"event";s:2989:"a:17:{i:0;a:5:{s:4:"time";d:1698227871.848727;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:1698227871.852762;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:1698227871.869926;s:4:"name";s:4:"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:1698227871.877432;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:1698227871.88553;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:1698227871.885589;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:1698227871.894924;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:1698227871.89494;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:1698227871.898424;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:1698227871.901855;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:1698227871.908027;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:1698227871.908049;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:1698227871.943478;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:1698227871.94352;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:1698227871.946151;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:1698227871.9462;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:1698227871.946213;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:1698227871.801253;s:3:"end";d:1698227871.948533;s:6:"memory";i:7372824;}";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:1698227871.853311;i:4;a:0:{}i:5;i:4620488;}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:1698227871.853325;i:4;a:0:{}i:5;i:4621240;}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:1698227871.853335;i:4;a:0:{}i:5;i:4621992;}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:1698227871.853343;i:4;a:0:{}i:5;i:4622744;}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:1698227871.853351;i:4;a:0:{}i:5;i:4623496;}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:1698227871.85336;i:4;a:0:{}i:5;i:4624248;}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:1698227871.853368;i:4;a:0:{}i:5;i:4625000;}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:1698227871.853373;i:4;a:0:{}i:5;i:4626016;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4365:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:1:"0";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%228rl_y8MvbciCILXPzaEK2oh2FhSz47dg%22;%7D";s:5:"token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";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:"6538e69fce833";s:16:"X-Debug-Duration";s:3:"146";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e69fce833";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";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: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:21:"/api/user/modify-user";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:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"58063";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:1:"0";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%228rl_y8MvbciCILXPzaEK2oh2FhSz47dg%22;%7D";s:10:"HTTP_TOKEN";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";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:1698227871.785233;s:12:"REQUEST_TIME";i:1698227871;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"8rl_y8MvbciCILXPzaEK2oh2FhSz47dg"";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:"6538e69fce833";s:3:"url";s:38:"http://cxfoot.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698227871.785233;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7372824;s:14:"processingTime";d:0.1471259593963623;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538e6b4eb9fc.data b/runtime/debug/6538e6b4eb9fc.data deleted file mode 100644 index 2c69101..0000000 --- a/runtime/debug/6538e6b4eb9fc.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:7519:"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:1698227892.926054;i:4;a:0:{}i:5;i:2494344;}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:1698227892.926073;i:4;a:0:{}i:5;i:2495520;}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:1698227892.963256;i:4;a:0:{}i:5;i:4070752;}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:1698227892.968107;i:4;a:0:{}i:5;i:4287200;}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:1698227892.968555;i:4;a:0:{}i:5;i:4289408;}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:1698227892.968807;i:4;a:0:{}i:5;i:4297592;}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:1698227892.970641;i:4;a:0:{}i:5;i:4369872;}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:1698227892.970831;i:4;a:0:{}i:5;i:4370216;}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:1698227892.971924;i:4;a:0:{}i:5;i:4394240;}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:1698227892.971959;i:4;a:0:{}i:5;i:4400632;}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:1698227892.974864;i:4;a:0:{}i:5;i:4624352;}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:1698227892.974874;i:4;a:0:{}i:5;i:4625984;}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:1698227893.00342;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6048520;}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:1698227893.003466;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6050952;}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:1698227893.00928;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6137264;}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:1698227893.017154;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6473832;}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:1698227893.033882;i:4;a:0:{}i:5;i:6702856;}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:1698227893.040001;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6838904;}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:1698227893.041516;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6857816;}i:39;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227892981, 1698227893042, 61, 0, 1698227893)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227893.052451;i:4;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:7245744;}}}";s:9:"profiling";s:11073:"a:3:{s:6:"memory";i:7371416;s:4:"time";d:0.1751270294189453;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:1698227893.003484;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052080;}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:1698227893.005096;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6101240;}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:1698227893.005126;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6101480;}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:1698227893.007677;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6117312;}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:1698227893.009316;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6140128;}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:1698227893.010607;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142512;}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:1698227893.017195;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6475080;}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:1698227893.017901;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481752;}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:1698227893.040035;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6841024;}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:1698227893.041063;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6863984;}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:1698227893.041543;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6861432;}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:1698227893.042031;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6864568;}i:40;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227892981, 1698227893042, 61, 0, 1698227893)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227893.052495;i:4;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:7244104;}i:41;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227892981, 1698227893042, 61, 0, 1698227893)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227893.069229;i:4;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:7246632;}}}";s:2:"db";s:10270:"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:1698227893.005126;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6101480;}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:1698227893.007677;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6117312;}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:1698227893.009316;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6140128;}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:1698227893.010607;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142512;}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:1698227893.017195;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6475080;}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:1698227893.017901;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481752;}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:1698227893.040035;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6841024;}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:1698227893.041063;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6863984;}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:1698227893.041543;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6861432;}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:1698227893.042031;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"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:6864568;}i:40;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227892981, 1698227893042, 61, 0, 1698227893)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227893.052495;i:4;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:7244104;}i:41;a:6:{i:0;s:439:"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/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698227892981, 1698227893042, 61, 0, 1698227893)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227893.069229;i:4;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:7246632;}}}";s:5:"event";s:2994:"a:17:{i:0;a:5:{s:4:"time";d:1698227892.968794;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:1698227892.974065;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:1698227892.997673;s:4:"name";s:4:"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:1698227893.005088;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:1698227893.017952;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:1698227893.018017;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:1698227893.034447;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:1698227893.034463;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:1698227893.039932;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:1698227893.042993;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:1698227893.051584;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:1698227893.051605;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:1698227893.069772;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:1698227893.069811;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:1698227893.073173;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:1698227893.073223;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:1698227893.073236;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:1698227892.900575;s:3:"end";d:1698227893.075847;s:6:"memory";i:7371416;}";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:1698227892.974792;i:4;a:0:{}i:5;i:4619080;}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:1698227892.974806;i:4;a:0:{}i:5;i:4619832;}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:1698227892.974815;i:4;a:0:{}i:5;i:4620584;}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:1698227892.974823;i:4;a:0:{}i:5;i:4621336;}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:1698227892.974831;i:4;a:0:{}i:5;i:4622088;}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:1698227892.974841;i:4;a:0:{}i:5;i:4622840;}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:1698227892.974849;i:4;a:0:{}i:5;i:4623592;}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:1698227892.974854;i:4;a:0:{}i:5;i:4624608;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4199:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:8:{s:14:"content-length";s:1:"0";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%228rl_y8MvbciCILXPzaEK2oh2FhSz47dg%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:"6538e6b4eb9fc";s:16:"X-Debug-Duration";s:3:"174";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e6b4eb9fc";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";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: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:21:"/api/user/modify-user";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:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"58074";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:1:"0";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%228rl_y8MvbciCILXPzaEK2oh2FhSz47dg%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:1698227892.864627;s:12:"REQUEST_TIME";i:1698227892;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"8rl_y8MvbciCILXPzaEK2oh2FhSz47dg"";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:"6538e6b4eb9fc";s:3:"url";s:38:"http://cxfoot.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698227892.864627;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7371416;s:14:"processingTime";d:0.1751270294189453;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538e6bf0d38f.data b/runtime/debug/6538e6bf0d38f.data deleted file mode 100644 index 7a521e5..0000000 --- a/runtime/debug/6538e6bf0d38f.data +++ /dev/null @@ -1,219 +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:12630:"a:1:{s:8:"messages";a:27:{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:1698227903.028424;i:4;a:0:{}i:5;i:2495896;}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:1698227903.028443;i:4;a:0:{}i:5;i:2497072;}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:1698227903.053408;i:4;a:0:{}i:5;i:4072304;}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:1698227903.056394;i:4;a:0:{}i:5;i:4288752;}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:1698227903.056818;i:4;a:0:{}i:5;i:4290960;}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:1698227903.05709;i:4;a:0:{}i:5;i:4299144;}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:1698227903.058544;i:4;a:0:{}i:5;i:4371424;}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:1698227903.058728;i:4;a:0:{}i:5;i:4371768;}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:1698227903.059287;i:4;a:0:{}i:5;i:4395792;}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:1698227903.059322;i:4;a:0:{}i:5;i:4402184;}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:1698227903.061692;i:4;a:0:{}i:5;i:4626224;}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:1698227903.061702;i:4;a:0:{}i:5;i:4627856;}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:1698227903.085077;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6050392;}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:1698227903.085124;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052824;}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:1698227903.089418;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6139136;}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:1698227903.094347;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6475704;}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:1698227903.103926;i:4;a:0:{}i:5;i:6704688;}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:1698227903.109554;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6981472;}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:1698227903.110368;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6989728;}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:1698227903.111467;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7003576;}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:1698227903.112634;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007456;}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:1698227903.114844;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7029544;}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:1698227903.115738;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037528;}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:1698227903.121423;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:7277488;}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:1698227903.122585;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:7363832;}i:53;a:6:{i:0;s:935:"yii\web\BadRequestHttpException: 您提交的数据无法被验证。 in D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\web\Controller.php:220 -Stack trace: -#0 D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php(106): yii\web\Controller->beforeAction(Object(yii\base\InlineAction)) -#1 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Controller.php(176): app\modules\api\controllers\Controller->beforeAction(Object(yii\base\InlineAction)) -#2 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(552): yii\base\Controller->runAction('modify-user', Array) -#3 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('api/user/modify...', Array) -#4 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#5 D:\phpstudy_pro\WWW\cxfoot\web\index.php(11): yii\base\Application->run() -#6 {main}";i:1;i:1;i:2;s:25:"yii\web\HttpException:400";i:3;d:1698227903.124668;i:4;a:0:{}i:5;i:7105856;}i:54;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:1698227903.127128;i:4;a:0:{}i:5;i:7225024;}}}";s:9:"profiling";s:16502:"a:3:{s:6:"memory";i:8560472;s:4:"time";d:0.1346440315246582;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:1698227903.085143;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6053952;}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:1698227903.08706;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103112;}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:1698227903.087094;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103352;}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:1698227903.088161;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6119184;}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:1698227903.089451;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142000;}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:1698227903.08994;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144384;}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:1698227903.094376;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6476952;}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:1698227903.094822;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6483624;}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:1698227903.109588;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983040;}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:1698227903.110275;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986728;}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:1698227903.110394;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991848;}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:1698227903.1112;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004112;}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:1698227903.111493;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007192;}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:1698227903.112449;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010328;}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:1698227903.11266;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009576;}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:1698227903.114205;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039696;}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:1698227903.114878;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7033160;}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:1698227903.115453;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7036296;}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:1698227903.115768;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039280;}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:1698227903.116286;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7045752;}}}";s:2:"db";s:15700:"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:1698227903.087094;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103352;}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:1698227903.088161;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6119184;}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:1698227903.089451;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142000;}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:1698227903.08994;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144384;}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:1698227903.094376;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6476952;}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:1698227903.094822;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6483624;}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:1698227903.109588;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983040;}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:1698227903.110275;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986728;}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:1698227903.110394;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991848;}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:1698227903.1112;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004112;}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:1698227903.111493;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007192;}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:1698227903.112449;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010328;}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:1698227903.11266;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009576;}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:1698227903.114205;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039696;}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:1698227903.114878;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7033160;}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:1698227903.115453;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7036296;}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:1698227903.115768;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039280;}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:1698227903.116286;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7045752;}}}";s:5:"event";s:4301:"a:25:{i:0;a:5:{s:4:"time";d:1698227903.057078;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:1698227903.061084;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:1698227903.078512;s:4:"name";s:4:"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:1698227903.08705;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:1698227903.09487;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:1698227903.094926;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:1698227903.104287;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:1698227903.104303;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:1698227903.108002;s:4:"name";s:4:"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:1698227903.110318;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:1698227903.112528;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:1698227903.112569;s:4:"name";s:4:"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:1698227903.116331;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:1698227903.116405;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:1698227903.116896;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:1698227903.121454;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:1698227903.12284;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:1698227903.127121;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:1698227903.128031;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:1698227903.135774;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:1698227903.135795;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:1698227903.135921;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:1698227903.135939;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:23;a:5:{s:4:"time";d:1698227903.136944;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:24;a:5:{s:4:"time";d:1698227903.137125;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:1698227903.009836;s:3:"end";d:1698227903.14469;s:6:"memory";i:8560472;}";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:1698227903.06162;i:4;a:0:{}i:5;i:4620632;}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:1698227903.061635;i:4;a:0:{}i:5;i:4621384;}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:1698227903.061643;i:4;a:0:{}i:5;i:4622136;}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:1698227903.061652;i:4;a:0:{}i:5;i:4622888;}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:1698227903.06166;i:4;a:0:{}i:5;i:4623640;}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:1698227903.061668;i:4;a:0:{}i:5;i:4624392;}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:1698227903.061676;i:4;a:0:{}i:5;i:4625144;}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:1698227903.061682;i:4;a:0:{}i:5;i:4626160;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4775:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:400;s:14:"requestHeaders";a:8:{s:14:"content-length";s:1:"0";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%228rl_y8MvbciCILXPzaEK2oh2FhSz47dg%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:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538e6bf0d38f";s:16:"X-Debug-Duration";s:3:"128";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e6bf0d38f";s:10:"Set-Cookie";s:204:"_csrf=9c8a8f09cdc173df7c89e351f2895f277995eeb73ffbb288cca53eddfd2f4b7ba%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22GlA_ZcsKlTrI0EfiNTkW1fOnjuEYHoUd%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";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: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:97:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";s:12:"QUERY_STRING";s:75:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";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:75:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"58094";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:1:"0";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%228rl_y8MvbciCILXPzaEK2oh2FhSz47dg%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:1698227902.994203;s:12:"REQUEST_TIME";i:1698227902;}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:"e6609f17cbf19d378135d3de25198d966c50ecaa1c0c2fe85f0fef28ced2b261a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"8rl_y8MvbciCILXPzaEK2oh2FhSz47dg"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e6bf0d38f";s:3:"url";s:114:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698227902.994203;s:10:"statusCode";i:400;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8560472;s:14:"processingTime";d:0.1346440315246582;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538e6cfefa14.data b/runtime/debug/6538e6cfefa14.data deleted file mode 100644 index c8347b6..0000000 --- a/runtime/debug/6538e6cfefa14.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:14970:"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:1698227919.957225;i:4;a:0:{}i:5;i:2496376;}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:1698227919.957245;i:4;a:0:{}i:5;i:2497552;}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:1698227919.980521;i:4;a:0:{}i:5;i:4072784;}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:1698227919.983991;i:4;a:0:{}i:5;i:4289232;}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:1698227919.984407;i:4;a:0:{}i:5;i:4291440;}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:1698227919.984649;i:4;a:0:{}i:5;i:4299624;}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:1698227919.986145;i:4;a:0:{}i:5;i:4371904;}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:1698227919.986369;i:4;a:0:{}i:5;i:4372248;}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:1698227919.986974;i:4;a:0:{}i:5;i:4396272;}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:1698227919.987009;i:4;a:0:{}i:5;i:4402664;}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:1698227919.989495;i:4;a:0:{}i:5;i:4626704;}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:1698227919.989506;i:4;a:0:{}i:5;i:4628336;}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:1698227920.010921;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6050840;}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:1698227920.011286;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6053272;}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:1698227920.016298;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6139584;}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:1698227920.021463;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6476152;}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:1698227920.032705;i:4;a:0:{}i:5;i:6705136;}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:1698227920.038527;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6981920;}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:1698227920.046963;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6990176;}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:1698227920.04825;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004024;}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:1698227920.048963;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007904;}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:1698227920.050708;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7029992;}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:1698227920.051422;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037976;}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:1698227920.05726;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:7277936;}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:1698227920.058769;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:7364280;}i:53;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:1698227920.059002;i:4;a:0:{}i:5;i:7360360;}i:54;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:1698227920.063575;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7484888;}i:57;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:1698227920.065285;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7503800;}i:60;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227919992, 1698227920066, 74, 0, 1698227920)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227920.069227;i:4;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:7637584;}}}";s:9:"profiling";s:23310:"a:3:{s:6:"memory";i:7802296;s:4:"time";d:0.16517090797424316;s:8:"messages";a:26:{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:1698227920.011311;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6054400;}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:1698227920.013777;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103560;}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:1698227920.013816;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103800;}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:1698227920.014891;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6119632;}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:1698227920.016342;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142448;}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:1698227920.016965;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144832;}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:1698227920.021502;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477400;}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:1698227920.0221;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484072;}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:1698227920.038574;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983488;}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:1698227920.046805;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987176;}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:1698227920.047014;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992296;}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:1698227920.047899;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004560;}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:1698227920.04828;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007640;}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:1698227920.04878;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010776;}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:1698227920.048989;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010024;}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:1698227920.050123;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040144;}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:1698227920.050736;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7033608;}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:1698227920.051177;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7036744;}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:1698227920.051446;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039728;}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:1698227920.051868;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7046200;}i:55;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:1698227920.063612;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7487008;}i:56;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:1698227920.064826;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509968;}i:58;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:1698227920.065312;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7507416;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698227920.065821;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7510552;}i:61;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227919992, 1698227920066, 74, 0, 1698227920)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227920.069261;i:4;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:7635944;}i:62;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227919992, 1698227920066, 74, 0, 1698227920)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227920.098713;i:4;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:7638472;}}}";s:2:"db";s:22506:"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:1698227920.013816;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103800;}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:1698227920.014891;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6119632;}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:1698227920.016342;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142448;}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:1698227920.016965;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144832;}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:1698227920.021502;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477400;}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:1698227920.0221;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484072;}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:1698227920.038574;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983488;}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:1698227920.046805;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987176;}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:1698227920.047014;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992296;}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:1698227920.047899;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004560;}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:1698227920.04828;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007640;}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:1698227920.04878;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010776;}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:1698227920.048989;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010024;}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:1698227920.050123;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040144;}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:1698227920.050736;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7033608;}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:1698227920.051177;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7036744;}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:1698227920.051446;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039728;}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:1698227920.051868;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7046200;}i:55;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:1698227920.063612;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7487008;}i:56;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:1698227920.064826;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509968;}i:58;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:1698227920.065312;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7507416;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698227920.065821;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7510552;}i:61;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227919992, 1698227920066, 74, 0, 1698227920)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227920.069261;i:4;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:7635944;}i:62;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227919992, 1698227920066, 74, 0, 1698227920)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227920.098713;i:4;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:7638472;}}}";s:5:"event";s:5507:"a:31:{i:0;a:5:{s:4:"time";d:1698227919.984636;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:1698227919.988846;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:1698227920.005982;s:4:"name";s:4:"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:1698227920.013767;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:1698227920.022149;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:1698227920.022208;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:1698227920.033089;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:1698227920.033104;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:1698227920.036915;s:4:"name";s:4:"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:1698227920.046885;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:1698227920.048863;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:1698227920.0489;s:4:"name";s:4:"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:1698227920.051907;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:1698227920.051973;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:1698227920.052594;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:1698227920.057287;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:1698227920.058983;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:1698227920.062637;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:1698227920.062885;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:1698227920.063516;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:20;a:5:{s:4:"time";d:1698227920.066583;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:21;a:5:{s:4:"time";d:1698227920.068377;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:22;a:5:{s:4:"time";d:1698227920.068396;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:23;a:5:{s:4:"time";d:1698227920.099328;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:24;a:5:{s:4:"time";d:1698227920.099374;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:25;a:5:{s:4:"time";d:1698227920.099387;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:26;a:5:{s:4:"time";d:1698227920.099396;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:27;a:5:{s:4:"time";d:1698227920.099411;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:28;a:5:{s:4:"time";d:1698227920.099422;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:29;a:5:{s:4:"time";d:1698227920.102061;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:30;a:5:{s:4:"time";d:1698227920.102138;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:1698227919.939157;s:3:"end";d:1698227920.104613;s:6:"memory";i:7802296;}";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:1698227919.989419;i:4;a:0:{}i:5;i:4621112;}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:1698227919.989435;i:4;a:0:{}i:5;i:4621864;}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:1698227919.989445;i:4;a:0:{}i:5;i:4622616;}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:1698227919.989453;i:4;a:0:{}i:5;i:4623368;}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:1698227919.989462;i:4;a:0:{}i:5;i:4624120;}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:1698227919.989471;i:4;a:0:{}i:5;i:4624872;}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:1698227919.989479;i:4;a:0:{}i:5;i:4625624;}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:1698227919.989484;i:4;a:0:{}i:5;i:4626640;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4962:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:8:{s:14:"content-length";s:1:"0";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=9c8a8f09cdc173df7c89e351f2895f277995eeb73ffbb288cca53eddfd2f4b7ba:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22GlA_ZcsKlTrI0EfiNTkW1fOnjuEYHoUd%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:"6538e6cfefa14";s:16:"X-Debug-Duration";s:3:"164";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e6cfefa14";s:10:"Set-Cookie";s:204:"_csrf=4c45a44d0db5875d29583b514158a9cc08b87cccf05d6a87f14bd90ae93d91b5a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%227d18T4opLq9ki-YR8wCuBcoAlq3i7dKI%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: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: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:"58106";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:1:"0";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=9c8a8f09cdc173df7c89e351f2895f277995eeb73ffbb288cca53eddfd2f4b7ba:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22GlA_ZcsKlTrI0EfiNTkW1fOnjuEYHoUd%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:1698227919.923612;s:12:"REQUEST_TIME";i:1698227919;}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:"9c8a8f09cdc173df7c89e351f2895f277995eeb73ffbb288cca53eddfd2f4b7ba:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"GlA_ZcsKlTrI0EfiNTkW1fOnjuEYHoUd"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e6cfefa14";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:1698227919.923612;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7802296;s:14:"processingTime";d:0.16517090797424316;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538e6fd8e07f.data b/runtime/debug/6538e6fd8e07f.data deleted file mode 100644 index e858550..0000000 --- a/runtime/debug/6538e6fd8e07f.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:14969:"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:1698227965.547969;i:4;a:0:{}i:5;i:2496376;}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:1698227965.547992;i:4;a:0:{}i:5;i:2497552;}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:1698227965.580946;i:4;a:0:{}i:5;i:4072784;}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:1698227965.58424;i:4;a:0:{}i:5;i:4289232;}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:1698227965.584679;i:4;a:0:{}i:5;i:4291440;}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:1698227965.620551;i:4;a:0:{}i:5;i:4299624;}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:1698227965.622278;i:4;a:0:{}i:5;i:4371904;}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:1698227965.622477;i:4;a:0:{}i:5;i:4372248;}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:1698227965.623063;i:4;a:0:{}i:5;i:4396272;}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:1698227965.623099;i:4;a:0:{}i:5;i:4402664;}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:1698227965.625884;i:4;a:0:{}i:5;i:4626704;}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:1698227965.625895;i:4;a:0:{}i:5;i:4628336;}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:1698227965.650241;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6050840;}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:1698227965.650288;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6053272;}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:1698227965.65731;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6139584;}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:1698227965.671764;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6476152;}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:1698227965.685528;i:4;a:0:{}i:5;i:6705136;}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:1698227965.692579;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6981920;}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:1698227965.700908;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6990176;}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:1698227965.702142;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004024;}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:1698227965.702884;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007904;}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:1698227965.704454;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7029992;}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:1698227965.705242;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037976;}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:1698227965.710975;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:7277936;}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:1698227965.71251;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:7364280;}i:53;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:1698227965.713169;i:4;a:0:{}i:5;i:7360360;}i:54;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:1698227965.718843;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7485688;}i:57;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:1698227965.720596;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7504600;}i:60;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227965631, 1698227965722, 91, 0, 1698227965)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227965.725731;i:4;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:7638384;}}}";s:9:"profiling";s:23310:"a:3:{s:6:"memory";i:7803096;s:4:"time";d:0.2517528533935547;s:8:"messages";a:26:{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:1698227965.650306;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6054400;}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:1698227965.654335;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103560;}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:1698227965.654379;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103800;}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:1698227965.655772;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6119632;}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:1698227965.657378;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142448;}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:1698227965.661014;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144832;}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:1698227965.67181;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477400;}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:1698227965.67244;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484072;}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:1698227965.692625;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983488;}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:1698227965.700749;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987176;}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:1698227965.70094;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992296;}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:1698227965.701849;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004560;}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:1698227965.702171;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007640;}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:1698227965.702706;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010776;}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:1698227965.702909;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010024;}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:1698227965.703828;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040144;}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:1698227965.704483;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7033608;}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:1698227965.704976;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7036744;}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:1698227965.705268;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039728;}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:1698227965.705691;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7046200;}i:55;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:1698227965.718881;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7487808;}i:56;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:1698227965.720122;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7510768;}i:58;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:1698227965.720624;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7508216;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698227965.721254;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7511352;}i:61;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227965631, 1698227965722, 91, 0, 1698227965)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227965.725773;i:4;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:7636744;}i:62;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227965631, 1698227965722, 91, 0, 1698227965)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227965.754064;i:4;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:7639272;}}}";s:2:"db";s:22507:"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:1698227965.654379;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103800;}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:1698227965.655772;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6119632;}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:1698227965.657378;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142448;}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:1698227965.661014;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144832;}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:1698227965.67181;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477400;}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:1698227965.67244;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484072;}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:1698227965.692625;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983488;}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:1698227965.700749;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987176;}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:1698227965.70094;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992296;}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:1698227965.701849;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004560;}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:1698227965.702171;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7007640;}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:1698227965.702706;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010776;}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:1698227965.702909;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010024;}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:1698227965.703828;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040144;}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:1698227965.704483;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7033608;}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:1698227965.704976;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7036744;}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:1698227965.705268;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039728;}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:1698227965.705691;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7046200;}i:55;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:1698227965.718881;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7487808;}i:56;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:1698227965.720122;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7510768;}i:58;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:1698227965.720624;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7508216;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698227965.721254;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7511352;}i:61;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227965631, 1698227965722, 91, 0, 1698227965)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227965.725773;i:4;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:7636744;}i:62;a:6:{i:0;s:558:"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', '[]', '127.0.0.1', 1, '2023-10-25', 1698227965631, 1698227965722, 91, 0, 1698227965)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227965.754064;i:4;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:7639272;}}}";s:5:"event";s:5508:"a:31:{i:0;a:5:{s:4:"time";d:1698227965.620531;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:1698227965.625242;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:1698227965.645328;s:4:"name";s:4:"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:1698227965.654324;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:1698227965.672499;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:1698227965.672571;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:1698227965.685928;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:1698227965.685968;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:1698227965.690156;s:4:"name";s:4:"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:1698227965.700827;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:1698227965.702784;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:1698227965.702822;s:4:"name";s:4:"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:1698227965.705736;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:1698227965.705809;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:1698227965.706234;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:1698227965.711011;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:1698227965.713143;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:1698227965.717671;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:1698227965.717806;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:1698227965.718778;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:20;a:5:{s:4:"time";d:1698227965.722189;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:21;a:5:{s:4:"time";d:1698227965.724636;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:22;a:5:{s:4:"time";d:1698227965.724655;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:23;a:5:{s:4:"time";d:1698227965.754851;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:24;a:5:{s:4:"time";d:1698227965.754896;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:25;a:5:{s:4:"time";d:1698227965.75491;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:26;a:5:{s:4:"time";d:1698227965.754919;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:27;a:5:{s:4:"time";d:1698227965.754934;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:28;a:5:{s:4:"time";d:1698227965.754951;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:29;a:5:{s:4:"time";d:1698227965.758293;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:30;a:5:{s:4:"time";d:1698227965.758372;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:1698227965.509036;s:3:"end";d:1698227965.761083;s:6:"memory";i:7803096;}";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:1698227965.625808;i:4;a:0:{}i:5;i:4621112;}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:1698227965.625825;i:4;a:0:{}i:5;i:4621864;}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:1698227965.625834;i:4;a:0:{}i:5;i:4622616;}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:1698227965.625842;i:4;a:0:{}i:5;i:4623368;}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:1698227965.62585;i:4;a:0:{}i:5;i:4624120;}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:1698227965.625859;i:4;a:0:{}i:5;i:4624872;}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:1698227965.625867;i:4;a:0:{}i:5;i:4625624;}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:1698227965.625872;i:4;a:0:{}i:5;i:4626640;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4962:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:8:{s:14:"content-length";s:1:"0";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=4c45a44d0db5875d29583b514158a9cc08b87cccf05d6a87f14bd90ae93d91b5a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%227d18T4opLq9ki-YR8wCuBcoAlq3i7dKI%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:"6538e6fd8e07f";s:16:"X-Debug-Duration";s:3:"250";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e6fd8e07f";s:10:"Set-Cookie";s:204:"_csrf=25ee2dc6b59695758393ac680d81c5ee4d4279b1793a9fe31c637e5c49633e9ea%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%222r1kZ7wXe_B_pcNC1zc2Ada7OxjKxvIj%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: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: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:"58151";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:1:"0";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=4c45a44d0db5875d29583b514158a9cc08b87cccf05d6a87f14bd90ae93d91b5a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%227d18T4opLq9ki-YR8wCuBcoAlq3i7dKI%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:1698227965.491892;s:12:"REQUEST_TIME";i:1698227965;}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:"4c45a44d0db5875d29583b514158a9cc08b87cccf05d6a87f14bd90ae93d91b5a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"7d18T4opLq9ki-YR8wCuBcoAlq3i7dKI"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e6fd8e07f";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:1698227965.491892;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7803096;s:14:"processingTime";d:0.2517528533935547;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538e70feec90.data b/runtime/debug/6538e70feec90.data deleted file mode 100644 index 1fa2488..0000000 --- a/runtime/debug/6538e70feec90.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:15011:"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:1698227983.943259;i:4;a:0:{}i:5;i:2496960;}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:1698227983.943402;i:4;a:0:{}i:5;i:2498136;}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:1698227983.977187;i:4;a:0:{}i:5;i:4073368;}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:1698227983.982713;i:4;a:0:{}i:5;i:4289816;}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:1698227983.98316;i:4;a:0:{}i:5;i:4292024;}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:1698227983.983416;i:4;a:0:{}i:5;i:4300208;}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:1698227983.985385;i:4;a:0:{}i:5;i:4372488;}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:1698227983.985574;i:4;a:0:{}i:5;i:4372832;}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:1698227983.986697;i:4;a:0:{}i:5;i:4396856;}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:1698227983.986743;i:4;a:0:{}i:5;i:4403248;}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:1698227983.989872;i:4;a:0:{}i:5;i:4628496;}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:1698227983.989883;i:4;a:0:{}i:5;i:4630128;}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:1698227984.016778;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052632;}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:1698227984.016825;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055064;}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:1698227984.021023;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141376;}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:1698227984.027732;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477944;}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:1698227984.043932;i:4;a:0:{}i:5;i:6706928;}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:1698227984.054032;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983640;}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:1698227984.059783;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991896;}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:1698227984.060798;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005744;}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:1698227984.061575;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009624;}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:1698227984.063593;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7031712;}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:1698227984.064721;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039696;}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:1698227984.072999;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:7279656;}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:1698227984.074559;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:7366000;}i:53;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:1698227984.074834;i:4;a:0:{}i:5;i:7362080;}i:54;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:1698227984.080137;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7486144;}i:57;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:1698227984.082144;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7505056;}i:60;a:6:{i:0;s:599:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227983994, 1698227984083, 89, 0, 1698227984)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227984.08747;i:4;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:7638840;}}}";s:9:"profiling";s:23390:"a:3:{s:6:"memory";i:7804816;s:4:"time";d:0.19805002212524414;s:8:"messages";a:26:{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:1698227984.016843;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6056192;}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:1698227984.018477;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105352;}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:1698227984.018514;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105592;}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:1698227984.019437;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121424;}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:1698227984.021056;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144240;}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:1698227984.021761;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146624;}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:1698227984.027764;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479192;}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:1698227984.0282;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485864;}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:1698227984.054093;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985208;}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:1698227984.059675;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988896;}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:1698227984.05981;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994016;}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:1698227984.060528;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006280;}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:1698227984.060825;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009360;}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:1698227984.061405;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012496;}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:1698227984.0616;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011744;}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:1698227984.062879;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041864;}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:1698227984.06363;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035328;}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:1698227984.064445;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038464;}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:1698227984.064751;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041448;}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:1698227984.065121;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047920;}i:55;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:1698227984.080177;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7488264;}i:56;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:1698227984.081657;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7511224;}i:58;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:1698227984.082172;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7508672;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698227984.082729;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7511808;}i:61;a:6:{i:0;s:599:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227983994, 1698227984083, 89, 0, 1698227984)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227984.087512;i:4;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:7637200;}i:62;a:6:{i:0;s:599:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227983994, 1698227984083, 89, 0, 1698227984)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227984.105515;i:4;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:7639856;}}}";s:2:"db";s:22586:"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:1698227984.018514;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105592;}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:1698227984.019437;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121424;}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:1698227984.021056;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144240;}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:1698227984.021761;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146624;}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:1698227984.027764;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479192;}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:1698227984.0282;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485864;}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:1698227984.054093;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985208;}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:1698227984.059675;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988896;}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:1698227984.05981;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994016;}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:1698227984.060528;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006280;}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:1698227984.060825;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009360;}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:1698227984.061405;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012496;}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:1698227984.0616;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011744;}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:1698227984.062879;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041864;}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:1698227984.06363;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035328;}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:1698227984.064445;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038464;}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:1698227984.064751;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041448;}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:1698227984.065121;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047920;}i:55;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:1698227984.080177;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7488264;}i:56;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:1698227984.081657;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7511224;}i:58;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:1698227984.082172;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7508672;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698227984.082729;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7511808;}i:61;a:6:{i:0;s:599:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227983994, 1698227984083, 89, 0, 1698227984)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227984.087512;i:4;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:7637200;}i:62;a:6:{i:0;s:599:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227983994, 1698227984083, 89, 0, 1698227984)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227984.105515;i:4;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:7639856;}}}";s:5:"event";s:5505:"a:31:{i:0;a:5:{s:4:"time";d:1698227983.983403;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:1698227983.98891;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:1698227984.010387;s:4:"name";s:4:"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:1698227984.018468;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:1698227984.028249;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:1698227984.028315;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:1698227984.044469;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:1698227984.044484;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:1698227984.051331;s:4:"name";s:4:"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:1698227984.059726;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:1698227984.061482;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:1698227984.061516;s:4:"name";s:4:"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:1698227984.065166;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:1698227984.06524;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:1698227984.065909;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:1698227984.073037;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:1698227984.074814;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:1698227984.078479;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:1698227984.078585;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:1698227984.080012;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:20;a:5:{s:4:"time";d:1698227984.083704;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:21;a:5:{s:4:"time";d:1698227984.086359;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:22;a:5:{s:4:"time";d:1698227984.086381;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:23;a:5:{s:4:"time";d:1698227984.106247;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:24;a:5:{s:4:"time";d:1698227984.106292;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:25;a:5:{s:4:"time";d:1698227984.106305;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:26;a:5:{s:4:"time";d:1698227984.106315;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:27;a:5:{s:4:"time";d:1698227984.106329;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:28;a:5:{s:4:"time";d:1698227984.10634;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:29;a:5:{s:4:"time";d:1698227984.110154;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:30;a:5:{s:4:"time";d:1698227984.11023;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:1698227983.915716;s:3:"end";d:1698227984.114054;s:6:"memory";i:7804816;}";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:1698227983.989799;i:4;a:0:{}i:5;i:4622904;}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:1698227983.989814;i:4;a:0:{}i:5;i:4623656;}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:1698227983.989824;i:4;a:0:{}i:5;i:4624408;}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:1698227983.989831;i:4;a:0:{}i:5;i:4625160;}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:1698227983.989839;i:4;a:0:{}i:5;i:4625912;}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:1698227983.989848;i:4;a:0:{}i:5;i:4626664;}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:1698227983.989856;i:4;a:0:{}i:5;i:4627416;}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:1698227983.989862;i:4;a:0:{}i:5;i:4628432;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5232:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"276";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------572944892055808800201640";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=57c5b3b159500d0db76ab9541482aaf513deff9a101c703979934e93b59ce2b1a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%229ZMn7NSIctg4giOoU7NVzIM1wdUk5VGe%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:"6538e70feec90";s:16:"X-Debug-Duration";s:3:"195";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e70feec90";s:10:"Set-Cookie";s:204:"_csrf=bd02e593035306d65032e5ccaf0a5325f0df1bf3e9c267cfa2a677e5d2c804c7a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22umO1baXTHrI3_syL8iWvsbkFu8LGkRK0%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:"58171";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:"276";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------572944892055808800201640";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=57c5b3b159500d0db76ab9541482aaf513deff9a101c703979934e93b59ce2b1a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%229ZMn7NSIctg4giOoU7NVzIM1wdUk5VGe%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:1698227983.877511;s:12:"REQUEST_TIME";i:1698227983;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:2:{s:9:"real_name";s:6:"张三";s:6:"gender";s:1:"1";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"57c5b3b159500d0db76ab9541482aaf513deff9a101c703979934e93b59ce2b1a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"9ZMn7NSIctg4giOoU7NVzIM1wdUk5VGe"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e70feec90";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:1698227983.877511;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7804816;s:14:"processingTime";d:0.19805002212524414;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538e719e947d.data b/runtime/debug/6538e719e947d.data deleted file mode 100644 index 4c07796..0000000 --- a/runtime/debug/6538e719e947d.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:15608:"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:1698227993.92177;i:4;a:0:{}i:5;i:2497056;}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:1698227993.921792;i:4;a:0:{}i:5;i:2498232;}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:1698227993.954615;i:4;a:0:{}i:5;i:4073464;}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:1698227993.958233;i:4;a:0:{}i:5;i:4289912;}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:1698227993.958656;i:4;a:0:{}i:5;i:4292120;}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:1698227993.95891;i:4;a:0:{}i:5;i:4300304;}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:1698227993.960694;i:4;a:0:{}i:5;i:4372584;}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:1698227993.960871;i:4;a:0:{}i:5;i:4372928;}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:1698227993.961942;i:4;a:0:{}i:5;i:4396952;}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:1698227993.961976;i:4;a:0:{}i:5;i:4403344;}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:1698227993.965405;i:4;a:0:{}i:5;i:4628592;}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:1698227993.965417;i:4;a:0:{}i:5;i:4630224;}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:1698227993.991823;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052728;}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:1698227993.991867;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055160;}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:1698227993.996296;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141472;}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:1698227994.004142;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6478040;}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:1698227994.021053;i:4;a:0:{}i:5;i:6707024;}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:1698227994.030145;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983736;}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:1698227994.03768;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991992;}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:1698227994.038783;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005840;}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:1698227994.039511;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009720;}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:1698227994.040955;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7031808;}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:1698227994.041639;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039792;}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:1698227994.050455;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:7279720;}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:1698227994.052047;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:7366064;}i:53;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:1698227994.052347;i:4;a:0:{}i:5;i:7362144;}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:1698227994.056594;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:68;s:8:"function";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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7444176;}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:1698227994.058188;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7490576;}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:1698227994.059637;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509488;}i:63;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227993970, 1698227994060, 90, 0, 1698227994)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227994.064909;i:4;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:7643272;}}}";s:9:"profiling";s:24589:"a:3:{s:6:"memory";i:7816008;s:4:"time";d:0.20696210861206055;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:1698227993.991885;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6056288;}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:1698227993.993639;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105448;}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:1698227993.99367;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105688;}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:1698227993.9948;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121520;}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:1698227993.996328;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144336;}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:1698227993.996804;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146720;}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:1698227994.004191;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479288;}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:1698227994.004847;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485960;}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:1698227994.030179;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985304;}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:1698227994.037525;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988992;}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:1698227994.037713;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994112;}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:1698227994.038494;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006376;}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:1698227994.038811;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009456;}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:1698227994.039334;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012592;}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:1698227994.039536;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011840;}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:1698227994.04038;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041960;}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:1698227994.040982;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035424;}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:1698227994.041396;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038560;}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:1698227994.041663;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041544;}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:1698227994.042057;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047984;}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:1698227994.056626;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:68;s:8:"function";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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7445976;}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:1698227994.057096;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:68;s:8:"function";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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7451720;}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:1698227994.058213;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7492696;}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:1698227994.059202;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7515656;}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:1698227994.059661;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7513104;}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:1698227994.06016;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7516240;}i:64;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227993970, 1698227994060, 90, 0, 1698227994)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227994.064956;i:4;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:7641632;}i:65;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227993970, 1698227994060, 90, 0, 1698227994)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227994.093957;i:4;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:7649920;}}}";s:2:"db";s:23785:"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:1698227993.99367;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105688;}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:1698227993.9948;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121520;}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:1698227993.996328;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144336;}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:1698227993.996804;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146720;}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:1698227994.004191;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479288;}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:1698227994.004847;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485960;}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:1698227994.030179;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985304;}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:1698227994.037525;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988992;}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:1698227994.037713;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994112;}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:1698227994.038494;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006376;}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:1698227994.038811;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009456;}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:1698227994.039334;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012592;}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:1698227994.039536;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011840;}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:1698227994.04038;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041960;}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:1698227994.040982;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035424;}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:1698227994.041396;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038560;}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:1698227994.041663;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041544;}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:1698227994.042057;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047984;}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:1698227994.056626;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:68;s:8:"function";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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7445976;}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:1698227994.057096;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:68;s:8:"function";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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7451720;}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:1698227994.058213;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7492696;}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:1698227994.059202;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7515656;}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:1698227994.059661;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7513104;}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:1698227994.06016;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7516240;}i:64;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227993970, 1698227994060, 90, 0, 1698227994)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227994.064956;i:4;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:7641632;}i:65;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698227993970, 1698227994060, 90, 0, 1698227994)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227994.093957;i:4;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:7649920;}}}";s:5:"event";s:6004:"a:34:{i:0;a:5:{s:4:"time";d:1698227993.958899;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:1698227993.964232;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:1698227993.986091;s:4:"name";s:4:"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:1698227993.993631;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:1698227994.0049;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:1698227994.004966;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:1698227994.021587;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:1698227994.021603;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:1698227994.027868;s:4:"name";s:4:"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:1698227994.037602;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:1698227994.039416;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:1698227994.039452;s:4:"name";s:4:"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:1698227994.042093;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:1698227994.042157;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:1698227994.042759;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:1698227994.050497;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:1698227994.052325;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:1698227994.056253;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:1698227994.056343;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:1698227994.056371;s:4:"name";s:4:"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:1698227994.057132;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:1698227994.057201;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:1698227994.058141;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:1698227994.060985;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:1698227994.063512;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:1698227994.063532;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:1698227994.094784;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:1698227994.094828;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:1698227994.094841;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:1698227994.094851;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:1698227994.094865;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:1698227994.094877;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:1698227994.099235;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:1698227994.099324;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:1698227993.895109;s:3:"end";d:1698227994.102371;s:6:"memory";i:7816008;}";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:1698227993.965323;i:4;a:0:{}i:5;i:4623000;}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:1698227993.965344;i:4;a:0:{}i:5;i:4623752;}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:1698227993.965354;i:4;a:0:{}i:5;i:4624504;}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:1698227993.965361;i:4;a:0:{}i:5;i:4625256;}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:1698227993.96537;i:4;a:0:{}i:5;i:4626008;}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:1698227993.965379;i:4;a:0:{}i:5;i:4626760;}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:1698227993.965388;i:4;a:0:{}i:5;i:4627512;}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:1698227993.965393;i:4;a:0:{}i:5;i:4628528;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5257:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"386";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------528844599658684951802200";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=bd02e593035306d65032e5ccaf0a5325f0df1bf3e9c267cfa2a677e5d2c804c7a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22umO1baXTHrI3_syL8iWvsbkFu8LGkRK0%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:"6538e719e947d";s:16:"X-Debug-Duration";s:3:"205";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e719e947d";s:10:"Set-Cookie";s:204:"_csrf=2a5f6a2a97597ea1f4b1d376bfcd62228415b93166e3308ab707cebab8aad3c9a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22gjNXIYuFF-L6hJ8LglJqSpnoenUbvs2D%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:"58179";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:"386";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------528844599658684951802200";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=bd02e593035306d65032e5ccaf0a5325f0df1bf3e9c267cfa2a677e5d2c804c7a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22umO1baXTHrI3_syL8iWvsbkFu8LGkRK0%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:1698227993.860815;s:12:"REQUEST_TIME";i:1698227993;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:3:{s:9:"real_name";s:6:"张三";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"bd02e593035306d65032e5ccaf0a5325f0df1bf3e9c267cfa2a677e5d2c804c7a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"umO1baXTHrI3_syL8iWvsbkFu8LGkRK0"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e719e947d";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:1698227993.860815;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7816008;s:14:"processingTime";d:0.20696210861206055;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538e736032c3.data b/runtime/debug/6538e736032c3.data deleted file mode 100644 index caea9e7..0000000 --- a/runtime/debug/6538e736032c3.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:15029:"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:1698228021.990454;i:4;a:0:{}i:5;i:2497056;}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:1698228021.990474;i:4;a:0:{}i:5;i:2498232;}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:1698228022.012302;i:4;a:0:{}i:5;i:4073464;}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:1698228022.015172;i:4;a:0:{}i:5;i:4289912;}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:1698228022.015588;i:4;a:0:{}i:5;i:4292120;}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:1698228022.015845;i:4;a:0:{}i:5;i:4300304;}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:1698228022.018064;i:4;a:0:{}i:5;i:4372584;}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:1698228022.018315;i:4;a:0:{}i:5;i:4372928;}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:1698228022.01892;i:4;a:0:{}i:5;i:4396952;}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:1698228022.018955;i:4;a:0:{}i:5;i:4403344;}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:1698228022.021613;i:4;a:0:{}i:5;i:4628592;}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:1698228022.021625;i:4;a:0:{}i:5;i:4630224;}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:1698228022.042354;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052728;}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:1698228022.042398;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055160;}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:1698228022.046115;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141472;}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:1698228022.052141;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6478040;}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:1698228022.061244;i:4;a:0:{}i:5;i:6707024;}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:1698228022.069026;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983736;}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:1698228022.0754;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991992;}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:1698228022.076428;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005840;}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:1698228022.077067;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009720;}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:1698228022.078518;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7031808;}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:1698228022.07919;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039792;}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:1698228022.085554;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:7279720;}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:1698228022.08682;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:7366064;}i:53;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:1698228022.087111;i:4;a:0:{}i:5;i:7362144;}i:54;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:1698228022.090284;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7487424;}i:57;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:1698228022.091925;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7506336;}i:60;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698228022024, 1698228022093, 69, 0, 1698228022)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228022.095803;i:4;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:7640120;}}}";s:9:"profiling";s:23436:"a:3:{s:6:"memory";i:7805712;s:4:"time";d:0.1460411548614502;s:8:"messages";a:26:{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:1698228022.042416;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6056288;}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:1698228022.043969;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105448;}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:1698228022.043999;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105688;}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:1698228022.044968;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121520;}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:1698228022.046147;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144336;}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:1698228022.046615;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146720;}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:1698228022.052188;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479288;}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:1698228022.052887;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485960;}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:1698228022.069069;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985304;}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:1698228022.075261;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988992;}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:1698228022.075431;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994112;}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:1698228022.076153;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006376;}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:1698228022.076455;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009456;}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:1698228022.076909;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012592;}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:1698228022.077092;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011840;}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:1698228022.077942;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041960;}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:1698228022.078544;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035424;}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:1698228022.078949;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038560;}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:1698228022.079214;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041544;}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:1698228022.079531;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047984;}i:55;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:1698228022.090317;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7489544;}i:56;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:1698228022.091463;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7512504;}i:58;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:1698228022.091952;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509952;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698228022.09249;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7513088;}i:61;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698228022024, 1698228022093, 69, 0, 1698228022)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228022.095838;i:4;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:7638480;}i:62;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698228022024, 1698228022093, 69, 0, 1698228022)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228022.111598;i:4;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:7641136;}}}";s:2:"db";s:22633:"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:1698228022.043999;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105688;}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:1698228022.044968;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121520;}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:1698228022.046147;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144336;}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:1698228022.046615;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146720;}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:1698228022.052188;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479288;}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:1698228022.052887;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485960;}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:1698228022.069069;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985304;}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:1698228022.075261;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988992;}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:1698228022.075431;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994112;}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:1698228022.076153;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006376;}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:1698228022.076455;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009456;}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:1698228022.076909;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012592;}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:1698228022.077092;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011840;}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:1698228022.077942;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041960;}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:1698228022.078544;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035424;}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:1698228022.078949;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038560;}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:1698228022.079214;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041544;}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:1698228022.079531;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047984;}i:55;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:1698228022.090317;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7489544;}i:56;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:1698228022.091463;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7512504;}i:58;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:1698228022.091952;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509952;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698228022.09249;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7513088;}i:61;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698228022024, 1698228022093, 69, 0, 1698228022)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228022.095838;i:4;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:7638480;}i:62;a:6:{i:0;s:620:"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\"}', '127.0.0.1', 1, '2023-10-25', 1698228022024, 1698228022093, 69, 0, 1698228022)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228022.111598;i:4;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:7641136;}}}";s:5:"event";s:5505:"a:31:{i:0;a:5:{s:4:"time";d:1698228022.015833;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:1698228022.020965;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:1698228022.037867;s:4:"name";s:4:"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:1698228022.043961;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:1698228022.052945;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:1698228022.053014;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:1698228022.061601;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:1698228022.061615;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:1698228022.065223;s:4:"name";s:4:"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:1698228022.07533;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:1698228022.076976;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:1698228022.07701;s:4:"name";s:4:"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:1698228022.079567;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:1698228022.079631;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:1698228022.08003;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:1698228022.085595;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:1698228022.08709;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:1698228022.089562;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:1698228022.089675;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:1698228022.090231;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:20;a:5:{s:4:"time";d:1698228022.093179;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:21;a:5:{s:4:"time";d:1698228022.094954;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:22;a:5:{s:4:"time";d:1698228022.094973;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:23;a:5:{s:4:"time";d:1698228022.112175;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:24;a:5:{s:4:"time";d:1698228022.112219;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:25;a:5:{s:4:"time";d:1698228022.112233;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:26;a:5:{s:4:"time";d:1698228022.112242;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:27;a:5:{s:4:"time";d:1698228022.112257;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:28;a:5:{s:4:"time";d:1698228022.112268;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:29;a:5:{s:4:"time";d:1698228022.114999;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:30;a:5:{s:4:"time";d:1698228022.115075;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:1698228021.972041;s:3:"end";d:1698228022.118365;s:6:"memory";i:7805712;}";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:1698228022.021537;i:4;a:0:{}i:5;i:4623000;}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:1698228022.021554;i:4;a:0:{}i:5;i:4623752;}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:1698228022.021564;i:4;a:0:{}i:5;i:4624504;}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:1698228022.021572;i:4;a:0:{}i:5;i:4625256;}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:1698228022.02158;i:4;a:0:{}i:5;i:4626008;}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:1698228022.021589;i:4;a:0:{}i:5;i:4626760;}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:1698228022.021597;i:4;a:0:{}i:5;i:4627512;}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:1698228022.021602;i:4;a:0:{}i:5;i:4628528;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5257:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"386";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------420184136102582609236327";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=2a5f6a2a97597ea1f4b1d376bfcd62228415b93166e3308ab707cebab8aad3c9a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22gjNXIYuFF-L6hJ8LglJqSpnoenUbvs2D%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:"6538e736032c3";s:16:"X-Debug-Duration";s:3:"144";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e736032c3";s:10:"Set-Cookie";s:204:"_csrf=dcd706a5305a78cbf0089701fba9f88382793f841f60f5489f58cb40af9a07aea%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22-na7AanGzPYbJMw9X2Za3tVjjcggmtHJ%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:"58204";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:"386";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------420184136102582609236327";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=2a5f6a2a97597ea1f4b1d376bfcd62228415b93166e3308ab707cebab8aad3c9a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22gjNXIYuFF-L6hJ8LglJqSpnoenUbvs2D%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:1698228021.955593;s:12:"REQUEST_TIME";i:1698228021;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:3:{s:9:"real_name";s:6:"张三";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"2a5f6a2a97597ea1f4b1d376bfcd62228415b93166e3308ab707cebab8aad3c9a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"gjNXIYuFF-L6hJ8LglJqSpnoenUbvs2D"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e736032c3";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:1698228021.955593;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7805712;s:14:"processingTime";d:0.1460411548614502;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538e73b1b690.data b/runtime/debug/6538e73b1b690.data deleted file mode 100644 index 8fd372b..0000000 --- a/runtime/debug/6538e73b1b690.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:15049:"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:1698228027.086995;i:4;a:0:{}i:5;i:2497128;}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:1698228027.087013;i:4;a:0:{}i:5;i:2498304;}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:1698228027.109519;i:4;a:0:{}i:5;i:4073536;}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:1698228027.114661;i:4;a:0:{}i:5;i:4289984;}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:1698228027.115154;i:4;a:0:{}i:5;i:4292192;}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:1698228027.115379;i:4;a:0:{}i:5;i:4300376;}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:1698228027.116888;i:4;a:0:{}i:5;i:4372656;}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:1698228027.117071;i:4;a:0:{}i:5;i:4373000;}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:1698228027.117632;i:4;a:0:{}i:5;i:4397024;}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:1698228027.117667;i:4;a:0:{}i:5;i:4403416;}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:1698228027.12004;i:4;a:0:{}i:5;i:4628664;}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:1698228027.120051;i:4;a:0:{}i:5;i:4630296;}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:1698228027.145241;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052800;}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:1698228027.145301;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055232;}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:1698228027.161238;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141544;}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:1698228027.166949;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6478112;}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:1698228027.1782;i:4;a:0:{}i:5;i:6707096;}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:1698228027.184246;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983768;}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:1698228027.185099;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992024;}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:1698228027.18613;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005872;}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:1698228027.186814;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009752;}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:1698228027.18827;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7031840;}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:1698228027.18899;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039824;}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:1698228027.195596;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:7279752;}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:1698228027.19681;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:7366096;}i:53;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:1698228027.197126;i:4;a:0:{}i:5;i:7362176;}i:54;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:1698228027.200307;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7487456;}i:57;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:1698228027.201968;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7506368;}i:60;a:6:{i:0;s:642:"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\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698228027123, 1698228027203, 80, 0, 1698228027)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228027.205961;i:4;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:7640152;}}}";s:9:"profiling";s:23478:"a:3:{s:6:"memory";i:7805744;s:4:"time";d:0.21860408782958984;s:8:"messages";a:26:{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:1698228027.145319;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6056360;}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:1698228027.157669;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105520;}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:1698228027.157714;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105760;}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:1698228027.158939;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121592;}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:1698228027.161314;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144408;}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:1698228027.162221;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146792;}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:1698228027.16699;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479360;}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:1698228027.167746;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6486032;}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:1698228027.18432;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985336;}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:1698228027.185003;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6989024;}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:1698228027.185126;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994144;}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:1698228027.185861;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006408;}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:1698228027.186156;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009488;}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:1698228027.186606;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012624;}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:1698228027.186842;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011872;}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:1698228027.187668;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041992;}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:1698228027.188304;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035456;}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:1698228027.188746;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038592;}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:1698228027.189015;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041576;}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:1698228027.189446;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7048016;}i:55;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:1698228027.20034;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7489576;}i:56;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:1698228027.201502;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7512536;}i:58;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:1698228027.201994;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509984;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698228027.20251;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7513120;}i:61;a:6:{i:0;s:642:"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\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698228027123, 1698228027203, 80, 0, 1698228027)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228027.205999;i:4;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:7638512;}i:62;a:6:{i:0;s:642:"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\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698228027123, 1698228027203, 80, 0, 1698228027)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228027.281555;i:4;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:7641168;}}}";s:2:"db";s:22674:"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:1698228027.157714;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105760;}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:1698228027.158939;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121592;}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:1698228027.161314;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144408;}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:1698228027.162221;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146792;}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:1698228027.16699;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479360;}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:1698228027.167746;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6486032;}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:1698228027.18432;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985336;}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:1698228027.185003;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6989024;}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:1698228027.185126;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994144;}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:1698228027.185861;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006408;}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:1698228027.186156;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009488;}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:1698228027.186606;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012624;}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:1698228027.186842;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011872;}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:1698228027.187668;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041992;}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:1698228027.188304;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035456;}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:1698228027.188746;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038592;}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:1698228027.189015;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041576;}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:1698228027.189446;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7048016;}i:55;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:1698228027.20034;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7489576;}i:56;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:1698228027.201502;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7512536;}i:58;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:1698228027.201994;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509984;}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:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698228027.20251;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7513120;}i:61;a:6:{i:0;s:642:"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\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698228027123, 1698228027203, 80, 0, 1698228027)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228027.205999;i:4;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:7638512;}i:62;a:6:{i:0;s:642:"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\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698228027123, 1698228027203, 80, 0, 1698228027)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228027.281555;i:4;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:7641168;}}}";s:5:"event";s:5505:"a:31:{i:0;a:5:{s:4:"time";d:1698228027.115367;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:1698228027.119417;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:1698228027.13834;s:4:"name";s:4:"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:1698228027.157658;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:1698228027.167808;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:1698228027.167879;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:1698228027.178575;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:1698228027.178591;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:1698228027.182622;s:4:"name";s:4:"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:1698228027.185048;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:1698228027.186678;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:1698228027.18671;s:4:"name";s:4:"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:1698228027.189487;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:1698228027.189557;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:1698228027.190028;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:1698228027.195636;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:1698228027.197105;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:1698228027.199571;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:1698228027.199685;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:1698228027.200252;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:20;a:5:{s:4:"time";d:1698228027.203174;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:21;a:5:{s:4:"time";d:1698228027.205067;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:22;a:5:{s:4:"time";d:1698228027.205087;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:23;a:5:{s:4:"time";d:1698228027.28218;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:24;a:5:{s:4:"time";d:1698228027.282228;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:25;a:5:{s:4:"time";d:1698228027.282241;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:26;a:5:{s:4:"time";d:1698228027.282251;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:27;a:5:{s:4:"time";d:1698228027.282265;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:28;a:5:{s:4:"time";d:1698228027.282277;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:29;a:5:{s:4:"time";d:1698228027.285073;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:30;a:5:{s:4:"time";d:1698228027.28515;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:1698228027.068837;s:3:"end";d:1698228027.287725;s:6:"memory";i:7805744;}";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:1698228027.119967;i:4;a:0:{}i:5;i:4623072;}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:1698228027.119982;i:4;a:0:{}i:5;i:4623824;}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:1698228027.119991;i:4;a:0:{}i:5;i:4624576;}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:1698228027.119999;i:4;a:0:{}i:5;i:4625328;}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:1698228027.120007;i:4;a:0:{}i:5;i:4626080;}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:1698228027.120016;i:4;a:0:{}i:5;i:4626832;}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:1698228027.120024;i:4;a:0:{}i:5;i:4627584;}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:1698228027.120029;i:4;a:0:{}i:5;i:4628600;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5284:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"497";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------901847892797437655468087";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=dcd706a5305a78cbf0089701fba9f88382793f841f60f5489f58cb40af9a07aea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22-na7AanGzPYbJMw9X2Za3tVjjcggmtHJ%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:"6538e73b1b690";s:16:"X-Debug-Duration";s:3:"217";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e73b1b690";s:10:"Set-Cookie";s:204:"_csrf=4c7139c80d8f9bca83ea2e7c1dad807f38ddfe4469eaa5f9c985356cdc31768ca%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22egsecjjO8KJwd3QbPTvFb3OeFwppPz-x%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:"58207";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:"497";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------901847892797437655468087";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=dcd706a5305a78cbf0089701fba9f88382793f841f60f5489f58cb40af9a07aea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22-na7AanGzPYbJMw9X2Za3tVjjcggmtHJ%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:1698228027.053336;s:12:"REQUEST_TIME";i:1698228027;}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:0:"";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"dcd706a5305a78cbf0089701fba9f88382793f841f60f5489f58cb40af9a07aea:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"-na7AanGzPYbJMw9X2Za3tVjjcggmtHJ"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e73b1b690";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:1698228027.053336;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7805744;s:14:"processingTime";d:0.21860408782958984;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a211734afc.data b/runtime/debug/653a211734afc.data new file mode 100644 index 0000000..feefb58 --- /dev/null +++ b/runtime/debug/653a211734afc.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..5266bf6 --- /dev/null +++ b/runtime/debug/653a21674402d.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..b40fcc9 --- /dev/null +++ b/runtime/debug/653a2173e258e.data @@ -0,0 +1,281 @@ +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/6538e74d20f6d.data b/runtime/debug/653a217ccd515.data similarity index 52% rename from runtime/debug/6538e74d20f6d.data rename to runtime/debug/653a217ccd515.data index 101fae5..aa0dc11 100644 --- a/runtime/debug/6538e74d20f6d.data +++ b/runtime/debug/653a217ccd515.data @@ -1,4 +1,4 @@ -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:15641:"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:1698228045.110697;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:1698228045.11072;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:1698228045.134103;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:1698228045.137478;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:1698228045.137929;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:1698228045.138176;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:1698228045.139635;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:1698228045.139813;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:1698228045.140357;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:1698228045.14039;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:1698228045.143538;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:1698228045.143552;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:1698228045.167278;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052848;}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:1698228045.167338;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055280;}i:26;a:6:{i:0;s:782:"SELECT +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`, @@ -12,7 +12,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.171536;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141592;}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:1698228045.176916;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6478160;}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:1698228045.187156;i:4;a:0:{}i:5;i:6707144;}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:1698228045.193516;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983816;}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:1698228045.19453;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992072;}i:39;a:6:{i:0;s:782:"SELECT +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`, @@ -26,7 +26,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698228045.195624;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005920;}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:1698228045.196318;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009800;}i:45;a:6:{i:0;s:770:"SELECT +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`, @@ -40,7 +40,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698228045.198212;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7031888;}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:1698228045.199041;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039872;}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:1698228045.204583;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:7279800;}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:1698228045.205738;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:7366144;}i:53;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:1698228045.206002;i:4;a:0:{}i:5;i:7362224;}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:1698228045.209029;i:4;a: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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7445472;}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:1698228045.210754;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7491872;}i:60;a:6:{i:0;s:776:"SELECT +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`, @@ -54,7 +54,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.212505;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7510784;}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\":\"18111111112\"}', '127.0.0.1', 1, '2023-10-25', 1698228045147, 1698228045214, 67, 0, 1698228045)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228045.216856;i:4;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:7644568;}}}";s:9:"profiling";s:24654:"a:3:{s:6:"memory";i:7816920;s:4:"time";d:0.15927481651306152;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:1698228045.167356;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6056408;}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:1698228045.169097;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105568;}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:1698228045.169127;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105808;}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:1698228045.170248;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121640;}i:27;a:6:{i:0;s:782:"SELECT +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`, @@ -68,7 +68,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.17157;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144456;}i:28;a:6:{i:0;s:782:"SELECT +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`, @@ -82,7 +82,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.172047;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146840;}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:1698228045.176957;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479408;}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:1698228045.177655;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6486080;}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:1698228045.193561;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985384;}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:1698228045.194415;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6989072;}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:1698228045.194558;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994192;}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:1698228045.195345;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006456;}i:40;a:6:{i:0;s:782:"SELECT +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`, @@ -96,7 +96,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698228045.195652;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009536;}i:41;a:6:{i:0;s:782:"SELECT +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`, @@ -110,7 +110,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698228045.19614;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012672;}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:1698228045.196344;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011920;}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:1698228045.197182;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042040;}i:46;a:6:{i:0;s:770:"SELECT +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`, @@ -124,7 +124,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698228045.198245;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035504;}i:47;a:6:{i:0;s:770:"SELECT +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`, @@ -138,7 +138,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698228045.198782;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038640;}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:1698228045.199066;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041624;}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:1698228045.199493;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7048064;}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:1698228045.209059;i:4;a: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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7447272;}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:1698228045.209751;i:4;a: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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7453016;}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:1698228045.21081;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7493992;}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:1698228045.21204;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7516952;}i:61;a:6:{i:0;s:776:"SELECT +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`, @@ -152,7 +152,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.212532;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7514400;}i:62;a:6:{i:0;s:776:"SELECT +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`, @@ -166,7 +166,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.21324;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7517536;}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\":\"18111111112\"}', '127.0.0.1', 1, '2023-10-25', 1698228045147, 1698228045214, 67, 0, 1698228045)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228045.216899;i:4;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:7642928;}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\":\"18111111112\"}', '127.0.0.1', 1, '2023-10-25', 1698228045147, 1698228045214, 67, 0, 1698228045)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228045.24373;i:4;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:7651216;}}}";s:2:"db";s:23850:"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:1698228045.169127;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105808;}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:1698228045.170248;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121640;}i:27;a:6:{i:0;s:782:"SELECT +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`, @@ -180,7 +180,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.17157;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144456;}i:28;a:6:{i:0;s:782:"SELECT +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`, @@ -194,7 +194,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.172047;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146840;}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:1698228045.176957;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479408;}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:1698228045.177655;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6486080;}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:1698228045.193561;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985384;}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:1698228045.194415;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6989072;}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:1698228045.194558;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994192;}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:1698228045.195345;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006456;}i:40;a:6:{i:0;s:782:"SELECT +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`, @@ -208,7 +208,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698228045.195652;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009536;}i:41;a:6:{i:0;s:782:"SELECT +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`, @@ -222,7 +222,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698228045.19614;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012672;}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:1698228045.196344;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011920;}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:1698228045.197182;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042040;}i:46;a:6:{i:0;s:770:"SELECT +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`, @@ -236,7 +236,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698228045.198245;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035504;}i:47;a:6:{i:0;s:770:"SELECT +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`, @@ -250,7 +250,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698228045.198782;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038640;}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:1698228045.199066;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041624;}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:1698228045.199493;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7048064;}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:1698228045.209059;i:4;a: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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7447272;}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:1698228045.209751;i:4;a: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:55;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7453016;}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:1698228045.21081;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7493992;}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:1698228045.21204;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7516952;}i:61;a:6:{i:0;s:776:"SELECT +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`, @@ -264,7 +264,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.212532;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7514400;}i:62;a:6:{i:0;s:776:"SELECT +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`, @@ -278,4 +278,4 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698228045.21324;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7517536;}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\":\"18111111112\"}', '127.0.0.1', 1, '2023-10-25', 1698228045147, 1698228045214, 67, 0, 1698228045)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228045.216899;i:4;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:7642928;}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\":\"18111111112\"}', '127.0.0.1', 1, '2023-10-25', 1698228045147, 1698228045214, 67, 0, 1698228045)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698228045.24373;i:4;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:7651216;}}}";s:5:"event";s:6002:"a:34:{i:0;a:5:{s:4:"time";d:1698228045.138164;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:1698228045.14212;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:1698228045.161988;s:4:"name";s:4:"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:1698228045.169088;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:1698228045.17772;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:1698228045.17779;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:1698228045.187519;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:1698228045.187534;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:1698228045.191172;s:4:"name";s:4:"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:1698228045.194471;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:1698228045.196214;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:1698228045.196256;s:4:"name";s:4:"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:1698228045.199537;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:1698228045.199609;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:1698228045.200082;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:1698228045.204612;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:1698228045.205977;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:1698228045.208407;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:1698228045.208778;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:1698228045.208807;s:4:"name";s:4:"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:1698228045.209794;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:1698228045.209869;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:1698228045.210694;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:1698228045.214065;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:1698228045.215931;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:1698228045.215951;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:1698228045.244735;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:1698228045.244783;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:1698228045.244796;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:1698228045.244805;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:1698228045.24482;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:1698228045.244831;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:1698228045.247597;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:1698228045.247678;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:1698228045.090743;s:3:"end";d:1698228045.250322;s:6:"memory";i:7816920;}";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:1698228045.143402;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:1698228045.143444;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:1698228045.14348;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:1698228045.143493;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:1698228045.143502;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:1698228045.143511;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:1698228045.14352;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:1698228045.143526;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=--------------------------357944548485589895472935";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=4c7139c80d8f9bca83ea2e7c1dad807f38ddfe4469eaa5f9c985356cdc31768ca:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22egsecjjO8KJwd3QbPTvFb3OeFwppPz-x%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:"6538e74d20f6d";s:16:"X-Debug-Duration";s:3:"158";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e74d20f6d";s:10:"Set-Cookie";s:204:"_csrf=891c8d08cbd16ee2fd1014715d9a52f1b2bf0c794b76a9c537052b44d6939a20a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22bBb6fqMWiXMSjtWGxtQbBweH6ofUMKZZ%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:"58220";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=--------------------------357944548485589895472935";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=4c7139c80d8f9bca83ea2e7c1dad807f38ddfe4469eaa5f9c985356cdc31768ca:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22egsecjjO8KJwd3QbPTvFb3OeFwppPz-x%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:1698228045.074963;s:12:"REQUEST_TIME";i:1698228045;}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:"18111111112";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"4c7139c80d8f9bca83ea2e7c1dad807f38ddfe4469eaa5f9c985356cdc31768ca:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"egsecjjO8KJwd3QbPTvFb3OeFwppPz-x"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e74d20f6d";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:1698228045.074963;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7816920;s:14:"processingTime";d:0.15927481651306152;}s:10:"exceptions";a:0:{}} \ No newline at end of file +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 new file mode 100644 index 0000000..ab1a3ed --- /dev/null +++ b/runtime/debug/653a219650fa2.data @@ -0,0 +1,211 @@ +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 new file mode 100644 index 0000000..5d99cb1 --- /dev/null +++ b/runtime/debug/653a21a06fbfa.data @@ -0,0 +1,211 @@ +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 new file mode 100644 index 0000000..2a01d62 --- /dev/null +++ b/runtime/debug/653a21a9ee801.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..2bcab38 --- /dev/null +++ b/runtime/debug/653a21b4b2adb.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..d97f314 --- /dev/null +++ b/runtime/debug/653a21c1526e1.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..3a86054 --- /dev/null +++ b/runtime/debug/653a21fadf859.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..61d95f8 --- /dev/null +++ b/runtime/debug/653a2231655f1.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..a8ce038 --- /dev/null +++ b/runtime/debug/653a26f089b86.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..f663a60 --- /dev/null +++ b/runtime/debug/653a27091e481.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..2fded15 --- /dev/null +++ b/runtime/debug/653a271267aa0.data @@ -0,0 +1,281 @@ +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 new file mode 100644 index 0000000..b7223e7 --- /dev/null +++ b/runtime/debug/653a272a15881.data @@ -0,0 +1,281 @@ +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/6538e70922519.data b/runtime/debug/653a279545b50.data similarity index 52% rename from runtime/debug/6538e70922519.data rename to runtime/debug/653a279545b50.data index 3d7d9d6..9bbc8f2 100644 --- a/runtime/debug/6538e70922519.data +++ b/runtime/debug/653a279545b50.data @@ -1,4 +1,4 @@ -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:14993:"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:1698227977.112927;i:4;a:0:{}i:5;i:2496864;}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:1698227977.112945;i:4;a:0:{}i:5;i:2498040;}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:1698227977.139837;i:4;a:0:{}i:5;i:4073272;}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:1698227977.142832;i:4;a:0:{}i:5;i:4289720;}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:1698227977.143278;i:4;a:0:{}i:5;i:4291928;}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:1698227977.143522;i:4;a:0:{}i:5;i:4300112;}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:1698227977.144969;i:4;a:0:{}i:5;i:4372392;}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:1698227977.145149;i:4;a:0:{}i:5;i:4372736;}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:1698227977.14569;i:4;a:0:{}i:5;i:4396760;}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:1698227977.145724;i:4;a:0:{}i:5;i:4403152;}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:1698227977.148115;i:4;a:0:{}i:5;i:4628400;}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:1698227977.148125;i:4;a:0:{}i:5;i:4630032;}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:1698227977.170917;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052536;}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:1698227977.170965;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6054968;}i:26;a:6:{i:0;s:782:"SELECT +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`, @@ -12,7 +12,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.174883;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141280;}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:1698227977.179941;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477848;}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:1698227977.189219;i:4;a:0:{}i:5;i:6706832;}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:1698227977.195297;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983576;}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:1698227977.203894;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991832;}i:39;a:6:{i:0;s:782:"SELECT +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`, @@ -26,7 +26,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698227977.205055;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005680;}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:1698227977.205747;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009560;}i:45;a:6:{i:0;s:770:"SELECT +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`, @@ -40,7 +40,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698227977.207223;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7031648;}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:1698227977.207938;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039632;}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:1698227977.2136;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:7279592;}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:1698227977.214786;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:7365936;}i:53;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:1698227977.215067;i:4;a:0:{}i:5;i:7362016;}i:54;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:1698227977.219058;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7486712;}i:57;a:6:{i:0;s:776:"SELECT +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`, @@ -54,7 +54,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.220631;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7505624;}i:60;a:6:{i:0;s:582:"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\":\"张三\"}', '127.0.0.1', 1, '2023-10-25', 1698227977152, 1698227977221, 69, 0, 1698227977)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227977.224635;i:4;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:7639408;}}}";s:9:"profiling";s:23361:"a:3:{s:6:"memory";i:7804752;s:4:"time";d:0.15103697776794434;s:8:"messages";a:26:{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:1698227977.170983;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6056096;}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:1698227977.172639;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105256;}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:1698227977.17267;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105496;}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:1698227977.173694;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121328;}i:27;a:6:{i:0;s:782:"SELECT +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`, @@ -68,7 +68,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.174915;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144144;}i:28;a:6:{i:0;s:782:"SELECT +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`, @@ -82,7 +82,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.175409;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146528;}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:1698227977.179975;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479096;}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:1698227977.180523;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485768;}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:1698227977.195332;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985144;}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:1698227977.203742;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988832;}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:1698227977.203927;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6993952;}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:1698227977.204764;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006216;}i:40;a:6:{i:0;s:782:"SELECT +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`, @@ -96,7 +96,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698227977.205084;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009296;}i:41;a:6:{i:0;s:782:"SELECT +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`, @@ -110,7 +110,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698227977.205571;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012432;}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:1698227977.205772;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011680;}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:1698227977.206651;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041800;}i:46;a:6:{i:0;s:770:"SELECT +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`, @@ -124,7 +124,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698227977.207249;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035264;}i:47;a:6:{i:0;s:770:"SELECT +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`, @@ -138,7 +138,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698227977.207693;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038400;}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:1698227977.207962;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041384;}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:1698227977.208297;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047856;}i:55;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:1698227977.219095;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7488832;}i:56;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:1698227977.220166;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7511792;}i:58;a:6:{i:0;s:776:"SELECT +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`, @@ -152,7 +152,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.220658;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509240;}i:59;a:6:{i:0;s:776:"SELECT +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`, @@ -166,7 +166,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.221164;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7512376;}i:61;a:6:{i:0;s:582:"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\":\"张三\"}', '127.0.0.1', 1, '2023-10-25', 1698227977152, 1698227977221, 69, 0, 1698227977)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227977.224674;i:4;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:7637768;}i:62;a:6:{i:0;s:582:"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\":\"张三\"}', '127.0.0.1', 1, '2023-10-25', 1698227977152, 1698227977221, 69, 0, 1698227977)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227977.239233;i:4;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:7640424;}}}";s:2:"db";s:22557:"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:1698227977.17267;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105496;}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:1698227977.173694;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121328;}i:27;a:6:{i:0;s:782:"SELECT +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`, @@ -180,7 +180,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.174915;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144144;}i:28;a:6:{i:0;s:782:"SELECT +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`, @@ -194,7 +194,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.175409;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146528;}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:1698227977.179975;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6479096;}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:1698227977.180523;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485768;}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:1698227977.195332;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6985144;}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:1698227977.203742;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988832;}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:1698227977.203927;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6993952;}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:1698227977.204764;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006216;}i:40;a:6:{i:0;s:782:"SELECT +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`, @@ -208,7 +208,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698227977.205084;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009296;}i:41;a:6:{i:0;s:782:"SELECT +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`, @@ -222,7 +222,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_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:1698227977.205571;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012432;}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:1698227977.205772;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011680;}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:1698227977.206651;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041800;}i:46;a:6:{i:0;s:770:"SELECT +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`, @@ -236,7 +236,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698227977.207249;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035264;}i:47;a:6:{i:0;s:770:"SELECT +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`, @@ -250,7 +250,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` WHERE `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:1698227977.207693;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038400;}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:1698227977.207962;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041384;}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:1698227977.208297;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047856;}i:55;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:1698227977.219095;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7488832;}i:56;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:1698227977.220166;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7511792;}i:58;a:6:{i:0;s:776:"SELECT +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`, @@ -264,7 +264,7 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.220658;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7509240;}i:59;a:6:{i:0;s:776:"SELECT +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`, @@ -278,4 +278,4 @@ JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`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:1698227977.221164;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7512376;}i:61;a:6:{i:0;s:582:"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\":\"张三\"}', '127.0.0.1', 1, '2023-10-25', 1698227977152, 1698227977221, 69, 0, 1698227977)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227977.224674;i:4;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:7637768;}i:62;a:6:{i:0;s:582:"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\":\"张三\"}', '127.0.0.1', 1, '2023-10-25', 1698227977152, 1698227977221, 69, 0, 1698227977)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698227977.239233;i:4;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:7640424;}}}";s:5:"event";s:5503:"a:31:{i:0;a:5:{s:4:"time";d:1698227977.14351;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:1698227977.147486;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:1698227977.165463;s:4:"name";s:4:"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:1698227977.17263;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:1698227977.180574;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:1698227977.180636;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:1698227977.189579;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:1698227977.189594;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:1698227977.193252;s:4:"name";s:4:"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:1698227977.203818;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:1698227977.20565;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:1698227977.205687;s:4:"name";s:4:"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:1698227977.208335;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:1698227977.2084;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:1698227977.208851;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:1698227977.213635;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:1698227977.215047;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:1698227977.218282;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:1698227977.218412;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:1698227977.218996;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:20;a:5:{s:4:"time";d:1698227977.221927;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:21;a:5:{s:4:"time";d:1698227977.223745;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:22;a:5:{s:4:"time";d:1698227977.223764;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:23;a:5:{s:4:"time";d:1698227977.239851;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:24;a:5:{s:4:"time";d:1698227977.239896;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:25;a:5:{s:4:"time";d:1698227977.23991;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:26;a:5:{s:4:"time";d:1698227977.239919;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:27;a:5:{s:4:"time";d:1698227977.239933;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:28;a:5:{s:4:"time";d:1698227977.239945;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:29;a:5:{s:4:"time";d:1698227977.242688;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:30;a:5:{s:4:"time";d:1698227977.242773;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:1698227977.094034;s:3:"end";d:1698227977.245353;s:6:"memory";i:7804752;}";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:1698227977.14804;i:4;a:0:{}i:5;i:4622808;}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:1698227977.148055;i:4;a:0:{}i:5;i:4623560;}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:1698227977.148065;i:4;a:0:{}i:5;i:4624312;}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:1698227977.148073;i:4;a:0:{}i:5;i:4625064;}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:1698227977.148082;i:4;a:0:{}i:5;i:4625816;}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:1698227977.148091;i:4;a:0:{}i:5;i:4626568;}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:1698227977.148099;i:4;a:0:{}i:5;i:4627320;}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:1698227977.148104;i:4;a:0:{}i:5;i:4628336;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5210:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"170";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------515210353892799479034957";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=25ee2dc6b59695758393ac680d81c5ee4d4279b1793a9fe31c637e5c49633e9ea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%222r1kZ7wXe_B_pcNC1zc2Ada7OxjKxvIj%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:"6538e70922519";s:16:"X-Debug-Duration";s:3:"150";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538e70922519";s:10:"Set-Cookie";s:204:"_csrf=57c5b3b159500d0db76ab9541482aaf513deff9a101c703979934e93b59ce2b1a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%229ZMn7NSIctg4giOoU7NVzIM1wdUk5VGe%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:"58164";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:"170";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------515210353892799479034957";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=25ee2dc6b59695758393ac680d81c5ee4d4279b1793a9fe31c637e5c49633e9ea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%222r1kZ7wXe_B_pcNC1zc2Ada7OxjKxvIj%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:1698227977.07846;s:12:"REQUEST_TIME";i:1698227977;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:1:{s:9:"real_name";s:6:"张三";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"25ee2dc6b59695758393ac680d81c5ee4d4279b1793a9fe31c637e5c49633e9ea:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"2r1kZ7wXe_B_pcNC1zc2Ada7OxjKxvIj"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2962:"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:14:"'测试用户'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"0";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:"1698133733";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:1:"0";}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:21:"是否有观看视频";}}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:"6538e70922519";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:1698227977.07846;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7804752;s:14:"processingTime";d:0.15103697776794434;}s:10:"exceptions";a:0:{}} \ No newline at end of file +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 new file mode 100644 index 0000000..388ec5f --- /dev/null +++ b/runtime/debug/653a27aca516c.data @@ -0,0 +1,351 @@ +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/index.data b/runtime/debug/index.data index b817269..76be997 100644 --- a/runtime/debug/index.data +++ b/runtime/debug/index.data @@ -1 +1 @@ -a:51:{s:13:"6538e69fce833";a:12:{s:3:"tag";s:13:"6538e69fce833";s:3:"url";s:38:"http://cxfoot.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698227871.785233;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7372824;s:14:"processingTime";d:0.1471259593963623;}s:13:"6538e6b4eb9fc";a:12:{s:3:"tag";s:13:"6538e6b4eb9fc";s:3:"url";s:38:"http://cxfoot.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698227892.864627;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7371416;s:14:"processingTime";d:0.1751270294189453;}s:13:"6538e6bf0d38f";a:12:{s:3:"tag";s:13:"6538e6bf0d38f";s:3:"url";s:114:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698227902.994203;s:10:"statusCode";i:400;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8560472;s:14:"processingTime";d:0.1346440315246582;}s:13:"6538e6cfefa14";a:12:{s:3:"tag";s:13:"6538e6cfefa14";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:1698227919.923612;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7802296;s:14:"processingTime";d:0.16517090797424316;}s:13:"6538e6fd8e07f";a:12:{s:3:"tag";s:13:"6538e6fd8e07f";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:1698227965.491892;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7803096;s:14:"processingTime";d:0.2517528533935547;}s:13:"6538e70922519";a:12:{s:3:"tag";s:13:"6538e70922519";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:1698227977.07846;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7804752;s:14:"processingTime";d:0.15103697776794434;}s:13:"6538e70feec90";a:12:{s:3:"tag";s:13:"6538e70feec90";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:1698227983.877511;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7804816;s:14:"processingTime";d:0.19805002212524414;}s:13:"6538e719e947d";a:12:{s:3:"tag";s:13:"6538e719e947d";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:1698227993.860815;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7816008;s:14:"processingTime";d:0.20696210861206055;}s:13:"6538e736032c3";a:12:{s:3:"tag";s:13:"6538e736032c3";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:1698228021.955593;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7805712;s:14:"processingTime";d:0.1460411548614502;}s:13:"6538e73b1b690";a:12:{s:3:"tag";s:13:"6538e73b1b690";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:1698228027.053336;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7805744;s:14:"processingTime";d:0.21860408782958984;}s:13:"6538e74d20f6d";a:12:{s:3:"tag";s:13:"6538e74d20f6d";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:1698228045.074963;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7816920;s:14:"processingTime";d:0.15927481651306152;}s:13:"6538e75e2c801";a:12:{s:3:"tag";s:13:"6538e75e2c801";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:1698228062.122015;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8471560;s:14:"processingTime";d:0.18553614616394043;}s:13:"6538e79e6afa6";a:12:{s:3:"tag";s:13:"6538e79e6afa6";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:1698228126.318658;s:10:"statusCode";i:200;s:8:"sqlCount";i:15;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9800000;s:14:"processingTime";d:0.35230398178100586;}s:13:"6538e7aecda96";a:12:{s:3:"tag";s:13:"6538e7aecda96";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:1698228142.784249;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7816904;s:14:"processingTime";d:0.16939091682434082;}s:13:"6538f48891685";a:12:{s:3:"tag";s:13:"6538f48891685";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:1698231432.484308;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8459072;s:14:"processingTime";d:0.2304379940032959;}s:13:"6538f49870ea8";a:12:{s:3:"tag";s:13:"6538f49870ea8";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:1698231448.402693;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8459072;s:14:"processingTime";d:0.16648006439208984;}s:13:"6538f4ae60271";a:12:{s:3:"tag";s:13:"6538f4ae60271";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:1698231470.292465;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8459144;s:14:"processingTime";d:0.2352280616760254;}s:13:"6538f4c8965d8";a:12:{s:3:"tag";s:13:"6538f4c8965d8";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:1698231496.520958;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8459144;s:14:"processingTime";d:0.2143099308013916;}s:13:"6538f4eaef2c7";a:12:{s:3:"tag";s:13:"6538f4eaef2c7";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:1698231530.922274;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8460656;s:14:"processingTime";d:0.1691758632659912;}s:13:"6538f501458c2";a:12:{s:3:"tag";s:13:"6538f501458c2";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:1698231553.215699;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8460584;s:14:"processingTime";d:0.1976020336151123;}s:13:"6538f59a02587";a:12:{s:3:"tag";s:13:"6538f59a02587";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:1698231705.908482;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8460728;s:14:"processingTime";d:0.20880699157714844;}s:13:"6538f5a7e9b8f";a:12:{s:3:"tag";s:13:"6538f5a7e9b8f";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:1698231719.855478;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8460864;s:14:"processingTime";d:0.2283000946044922;}s:13:"6538f6986aeb4";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:13:"6538f69884072";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:13:"6538f698b5786";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:13:"6538f698cd2dc";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:13:"6538f6a524b71";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:13:"6538f6a7676d1";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:13:"6538f6ad4c911";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:13:"6538f6ae10320";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:13:"6538f6af7916f";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:13:"6538f6afb947c";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:13:"6538f6d09555c";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:13:"6538f6d4b2a3d";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:13:"6538f6d5385c3";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:13:"6538f6d6a38a9";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:13:"6538f6d712fe0";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:13:"6538f6e2b635f";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:13:"6538f6f8518f2";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:13:"6538f6fba3afb";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:13:"6538f6fc2c920";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:13:"6538f6fd92e97";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:13:"6538f6fddd208";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:13:"6538f712a7e30";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:13:"6538f715a6a22";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:13:"6538f716613c6";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:13:"6538f717d0620";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:13:"6538f71832e12";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:13:"6538f72f4ebb4";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:13:"653a0be4bde12";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:13:"653a0bffad2a1";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;}} \ No newline at end of file +a:57:{s:13:"6538e75e2c801";a:12:{s:3:"tag";s:13:"6538e75e2c801";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:1698228062.122015;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8471560;s:14:"processingTime";d:0.18553614616394043;}s:13:"6538e79e6afa6";a:12:{s:3:"tag";s:13:"6538e79e6afa6";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:1698228126.318658;s:10:"statusCode";i:200;s:8:"sqlCount";i:15;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9800000;s:14:"processingTime";d:0.35230398178100586;}s:13:"6538e7aecda96";a:12:{s:3:"tag";s:13:"6538e7aecda96";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:1698228142.784249;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7816904;s:14:"processingTime";d:0.16939091682434082;}s:13:"6538f48891685";a:12:{s:3:"tag";s:13:"6538f48891685";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:1698231432.484308;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8459072;s:14:"processingTime";d:0.2304379940032959;}s:13:"6538f49870ea8";a:12:{s:3:"tag";s:13:"6538f49870ea8";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:1698231448.402693;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8459072;s:14:"processingTime";d:0.16648006439208984;}s:13:"6538f4ae60271";a:12:{s:3:"tag";s:13:"6538f4ae60271";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:1698231470.292465;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8459144;s:14:"processingTime";d:0.2352280616760254;}s:13:"6538f4c8965d8";a:12:{s:3:"tag";s:13:"6538f4c8965d8";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:1698231496.520958;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8459144;s:14:"processingTime";d:0.2143099308013916;}s:13:"6538f4eaef2c7";a:12:{s:3:"tag";s:13:"6538f4eaef2c7";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:1698231530.922274;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8460656;s:14:"processingTime";d:0.1691758632659912;}s:13:"6538f501458c2";a:12:{s:3:"tag";s:13:"6538f501458c2";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:1698231553.215699;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8460584;s:14:"processingTime";d:0.1976020336151123;}s:13:"6538f59a02587";a:12:{s:3:"tag";s:13:"6538f59a02587";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:1698231705.908482;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8460728;s:14:"processingTime";d:0.20880699157714844;}s:13:"6538f5a7e9b8f";a:12:{s:3:"tag";s:13:"6538f5a7e9b8f";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:1698231719.855478;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8460864;s:14:"processingTime";d:0.2283000946044922;}s:13:"6538f6986aeb4";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:13:"6538f69884072";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:13:"6538f698b5786";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:13:"6538f698cd2dc";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:13:"6538f6a524b71";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:13:"6538f6a7676d1";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:13:"6538f6ad4c911";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:13:"6538f6ae10320";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:13:"6538f6af7916f";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:13:"6538f6afb947c";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:13:"6538f6d09555c";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:13:"6538f6d4b2a3d";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:13:"6538f6d5385c3";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:13:"6538f6d6a38a9";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:13:"6538f6d712fe0";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:13:"6538f6e2b635f";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:13:"6538f6f8518f2";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:13:"6538f6fba3afb";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:13:"6538f6fc2c920";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:13:"6538f6fd92e97";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:13:"6538f6fddd208";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:13:"6538f712a7e30";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:13:"6538f715a6a22";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:13:"6538f716613c6";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:13:"6538f717d0620";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:13:"6538f71832e12";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:13:"6538f72f4ebb4";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:13:"653a0be4bde12";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:13:"653a0bffad2a1";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:13:"653a211734afc";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:13:"653a21674402d";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:13:"653a2173e258e";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:13:"653a217ccd515";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:13:"653a219650fa2";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:13:"653a21a06fbfa";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:13:"653a21a9ee801";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:13:"653a21b4b2adb";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:13:"653a21c1526e1";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:13:"653a21fadf859";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:13:"653a2231655f1";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:13:"653a26f089b86";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:13:"653a27091e481";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:13:"653a271267aa0";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:13:"653a272a15881";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:13:"653a279545b50";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:13:"653a27aca516c";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;}} \ No newline at end of file