chenhao пре 4 година
родитељ
комит
021a94a499

+ 16 - 2
.idea/workspace.xml

@@ -1,7 +1,17 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project version="4">
   <component name="ChangeListManager">
-    <list default="true" id="0be2afa7-dbc2-43bd-8fbe-bf5f32573952" name="Default Changelist" comment="" />
+    <list default="true" id="0be2afa7-dbc2-43bd-8fbe-bf5f32573952" name="Default Changelist" comment="">
+      <change afterPath="$PROJECT_DIR$/fastadmin/application/api/model/AboutUsModel.php" afterDir="false" />
+      <change afterPath="$PROJECT_DIR$/fastadmin/application/api/model/IntroduceModel.php" afterDir="false" />
+      <change afterPath="$PROJECT_DIR$/fastadmin/application/api/model/Type.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/fastadmin/application/admin/model/Type.php" beforeDir="false" afterPath="$PROJECT_DIR$/fastadmin/application/admin/model/Type.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/fastadmin/application/api/controller/Index.php" beforeDir="false" afterPath="$PROJECT_DIR$/fastadmin/application/api/controller/Index.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/fastadmin/application/config.php" beforeDir="false" afterPath="$PROJECT_DIR$/fastadmin/application/config.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/fastadmin/application/extra/site.php" beforeDir="false" afterPath="$PROJECT_DIR$/fastadmin/application/extra/site.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/fastadmin/runtime/log/202006/08.log" beforeDir="false" afterPath="$PROJECT_DIR$/fastadmin/runtime/log/202006/08.log" afterDir="false" />
+    </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
     <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -60,7 +70,7 @@
       <workItem from="1591233146354" duration="1873000" />
       <workItem from="1591320693328" duration="12492000" />
       <workItem from="1591405786921" duration="6462000" />
-      <workItem from="1591579732108" duration="9640000" />
+      <workItem from="1591579732108" duration="17005000" />
     </task>
     <task id="LOCAL-00001" summary="1">
       <created>1591597066719</created>
@@ -87,6 +97,10 @@
     <option name="LAST_COMMIT_MESSAGE" value="1" />
   </component>
   <component name="WindowStateProjectService">
+    <state x="523" y="0" key="#com.intellij.refactoring.rename.AutomaticRenamingDialog" timestamp="1591605549628">
+      <screen x="0" y="0" width="1536" height="864" />
+    </state>
+    <state x="523" y="0" key="#com.intellij.refactoring.rename.AutomaticRenamingDialog/0.0.1536.864@0.0.1536.864" timestamp="1591605549628" />
     <state x="499" y="187" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog" timestamp="1591600679604">
       <screen x="0" y="0" width="1536" height="864" />
     </state>

+ 0 - 9
fastadmin/application/admin/model/Type.php

@@ -27,14 +27,5 @@ class Type extends Model
     protected $append = [
 
     ];
-    
-
-    
-
-
-
-
-
-
 
 }

+ 61 - 0
fastadmin/application/api/controller/Index.php

@@ -2,7 +2,12 @@
 
 namespace app\api\controller;
 
+use app\api\Model\AboutUsModel;
+use app\api\model\Type;
+use app\api\model\IntroduceModel;
 use app\common\controller\Api;
+use think\Cache;
+use think\Request;
 
 /**
  * 首页接口
@@ -18,6 +23,62 @@ class Index extends Api
      */
     public function index()
     {
+
         $this->success('请求成功');
     }
+    /**
+     * 所有文案显示
+     */
+    public function allIntroduce()
+    {
+        $introller = new IntroduceModel();
+        $result = $introller->allIntroduce();
+        return $result;
+    }
+    /**
+     * 所有栏目显示
+     */
+    public function allType()
+    {
+        $type = new Type();
+        $result = $type->allType();
+        return $result;
+    }
+    /**
+     * 单个栏目下的文案
+     * 参数 id 栏目id
+     */
+    public function introduce(Request $request)
+    {
+        $id = $request->post('id');
+        if (!$id) {
+            return $this->result('网络错误',[],100);
+        }
+        $introduce = new IntroduceModel();
+        $result = $introduce->introduce($id);
+        return $result;
+    }
+    /**
+     * 文案详情
+     * 参数 id 文案id
+     */
+    public function introduceInfo(Request $request)
+    {
+        $id = $request->post('id');
+        if (!$id) {
+            return $this->result('网络错误',[],100);
+        }
+        $introduce = new IntroduceModel();
+        $result = $introduce->introduceInfo($id);
+        return $result;
+    }
+    /**
+     * 联系我们
+     */
+    public function aboutUs()
+    {
+        $aboutUs = new AboutUsModel();
+        $result = $aboutUs->index();
+        return $result;
+    }
 }

+ 19 - 0
fastadmin/application/api/model/AboutUsModel.php

@@ -0,0 +1,19 @@
+<?php
+namespace app\api\Model;
+
+use think\Model;
+
+class AboutUsModel extends Model
+{
+    protected $name = 'about_us';
+
+    public function index()
+    {
+        $data = $this->alias('a')->find();
+        if ($data) {
+            return json(['data' => $data, 'msg' => '', 'code' => 200]);
+        } else {
+            return json(['data' => [], 'msg' => '暂无信息', 'code' => 100]);
+        }
+    }
+}

+ 72 - 0
fastadmin/application/api/model/IntroduceModel.php

@@ -0,0 +1,72 @@
+<?php
+namespace app\api\model;
+
+use think\Cache;
+use think\Model;
+
+class IntroduceModel extends Model
+{
+    protected $name = 'introduce';
+//    protected $resultSetType = 'collection';
+    public function allIntroduce()
+    {
+         $data = $this->alias('i')
+             ->join('type t', 'i.tid=t.id','left')
+             ->field('t.name name,title,zhu_image,pei_images,introduce')
+             ->order('i.sort','asc')
+             ->select();
+         if ($data) {
+             return json(['data' => $data, 'msg'=> '', 'code' => 200]);
+         } else {
+             return json(['data' => [], 'msg' => '暂无数据','code' => 100]);
+         }
+    }
+
+    public function introduce($id)
+    {
+        $data = $this->alias('i')
+            ->join('type t', 'i.tid=t.id','left')
+            ->field('t.name name,title,zhu_image,pei_images,introduce')
+            ->where('i.tid',$id)
+            ->order('i.sort','asc')
+            ->select();
+        if ($data) {
+            return json(['data' => $data, 'msg'=> '', 'code' => 200]);
+        } else {
+            return json(['data' => [], 'msg' => '暂无数据','code' => 100]);
+        }
+    }
+
+    public function introduceInfo($id)
+    {
+        $data = $this->alias('i')
+            ->join('type t', 'i.tid=t.id','left')
+            ->field('t.name name,title,zhu_image,pei_images,introduce')
+            ->where('i.id',$id)
+            ->order('i.sort','asc')
+            ->select();
+        if ($data) {
+            return json(['data' => $data, 'msg'=> '', 'code' => 200]);
+        } else {
+            return json(['data' => [], 'msg' => '暂无数据','code' => 100]);
+        }
+    }
+    public function type()
+    {
+        $this->belongsTo('type','tid', 'id');
+    }
+
+    public function getZhuImageAttr($value)
+    {
+        return config('site.url').$value;
+    }
+
+    public function getPeiImagesAttr($value)
+    {
+       $value = explode(',', $value);
+       foreach ($value as &$v) {
+           $v = config('site.url').$v;
+       }
+       return $value;
+    }
+}

+ 28 - 0
fastadmin/application/api/model/Type.php

@@ -0,0 +1,28 @@
+<?php
+namespace app\api\model;
+
+use think\Model;
+
+class Type extends Model
+{
+    protected $name = 'type';
+
+    public function allType()
+    {
+        $data = $this->alias('t')->order('sort','asc')->select();
+        if ($data){
+            return json(['data' => $data, 'code' => 200]);
+        } else {
+           return json(['data' => [],'code' => 100, 'msg' => '暂无栏目']);    
+        }
+    }
+    public function IntroduceModel()
+    {
+        $this->hasMany('IntroduceModel','tid','id');
+    }
+
+    public function getImageAttr($value)
+    {
+        return config('site.url').$value;
+    }
+}

+ 1 - 1
fastadmin/application/config.php

@@ -18,7 +18,7 @@ return [
     // 应用命名空间
     'app_namespace'          => 'app',
     // 应用调试模式
-    'app_debug'              => Env::get('app.debug', false),
+    'app_debug'              => Env::get('app.debug', true),
     // 应用Trace
     'app_trace'              => Env::get('app.trace', false),
     // 应用模式状态

+ 2 - 1
fastadmin/application/extra/site.php

@@ -7,7 +7,8 @@ return array (
   'version' => '1.0.1',
   'timezone' => 'Asia/Shanghai',
   'forbiddenip' => '',
-  'languages' => 
+  'url' => 'http://s473.top/fastadmin/public',
+  'languages' =>
   array (
     'backend' => 'zh-cn',
     'frontend' => 'zh-cn',

+ 4 - 0
fastadmin/runtime/cache/20/63c1608d6e0baf80249c42e2be5804.php

@@ -0,0 +1,4 @@
+<?php
+//000000000000
+ exit();?>
+s:54:"/uploads/20200608/201e016c4d113351ec617ca658d9cf28.jpg";

+ 3459 - 0
fastadmin/runtime/log/202006/08.log

@@ -19,3 +19,3462 @@
 ---------------------------------------------------------------
 [ 2020-06-08T15:25:45+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/pXvELjySFA.php/introduce/add?dialog=1
 [ error ] [0]variable type error: array
+---------------------------------------------------------------
+[ 2020-06-08T17:05:55+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.238651s] [吞吐率:4.19req/s] [内存消耗:2,236.35kb] [文件加载:119]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001605s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000291s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '453d3c0a-2d49-4584-bd92-3d2c7fd6714c',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001051s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:06:10+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.145744s] [吞吐率:6.86req/s] [内存消耗:2,239.35kb] [文件加载:119]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001434s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000305s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '11f2294d-40b1-48a5-8f41-6225d84ff17e',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001013s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: Class 'app\api\model\cotroller\IntroduceModel' not found[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php:30]
+---------------------------------------------------------------
+[ 2020-06-08T17:07:02+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.043415s] [吞吐率:23.03req/s] [内存消耗:2,239.35kb] [文件加载:119]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001771s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000432s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '182bd72c-e1e5-4285-bf2c-b339dde0cdfa',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001079s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: Class 'app\api\model\cotroller\IntroduceModel' not found[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php:30]
+---------------------------------------------------------------
+[ 2020-06-08T17:07:40+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.055941s] [吞吐率:17.88req/s] [内存消耗:2,239.35kb] [文件加载:119]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002066s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000649s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '39f13cb7-bfba-4f83-93da-c8850f4b4055',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001282s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: Class 'app\api\model\cotroller\IntroduceModel' not found[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php:30]
+---------------------------------------------------------------
+[ 2020-06-08T17:07:42+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.040142s] [吞吐率:24.91req/s] [内存消耗:2,239.35kb] [文件加载:119]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001481s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000263s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '3fea010c-ffe3-49ad-93fb-15a767bc97c1',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000969s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: Class 'app\api\model\cotroller\IntroduceModel' not found[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php:30]
+---------------------------------------------------------------
+[ 2020-06-08T17:07:54+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.349171s] [吞吐率:2.86req/s] [内存消耗:3,024.41kb] [文件加载:128]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002294s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000488s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '0cd10587-9161-4024-8226-0795d051a090',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001218s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+[ error ] [10501]SQLSTATE[42S22]: Column not found: 1054 Unknown column 'pei_image' in 'field list'[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\library\think\db\Connection.php:385]
+---------------------------------------------------------------
+[ 2020-06-08T17:08:20+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.066002s] [吞吐率:15.15req/s] [内存消耗:3,024.42kb] [文件加载:128]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002010s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000264s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'df6a69a3-cfad-42fd-a59b-e315e634d271',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001227s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+[ error ] [10501]SQLSTATE[23000]: Integrity constraint violation: 1052 Column 'sort' in order clause is ambiguous[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\library\think\db\Connection.php:385]
+---------------------------------------------------------------
+[ 2020-06-08T17:09:07+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.169479s] [吞吐率:5.90req/s] [内存消耗:2,869.04kb] [文件加载:122]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001434s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000264s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'da999a71-a318-4099-b256-bcb83f6581b3',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001614s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:13:49+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.071181s] [吞吐率:14.05req/s] [内存消耗:2,873.55kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000293s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002110s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000473s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '448b0e45-371c-4181-8438-aa22943c1284',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001716s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:19:31+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.077026s] [吞吐率:12.98req/s] [内存消耗:2,873.18kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002231s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000836s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '6d27c07b-17f2-4127-aae5-c2a6a0e04383',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001715s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:19:47+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.076731s] [吞吐率:13.03req/s] [内存消耗:2,874.13kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000026s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002023s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000440s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'b52f40a6-e00c-4822-84b9-5264816aee7e',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001830s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:20:20+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.071135s] [吞吐率:14.06req/s] [内存消耗:2,873.18kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000141s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002319s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000504s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '16e669c8-d897-4524-a532-6d39b9b4108f',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002653s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:20:25+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.073934s] [吞吐率:13.53req/s] [内存消耗:2,873.18kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001731s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000278s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'bb514eb3-7b51-4916-9198-633a8e140184',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001872s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:20:52+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.060213s] [吞吐率:16.61req/s] [内存消耗:2,873.55kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001410s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000276s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'b9a09f51-7c25-4abd-ba7d-56d1ca934bd2',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001240s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:21:11+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.067644s] [吞吐率:14.78req/s] [内存消耗:2,873.27kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001583s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000506s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'c10cbdc0-7cbe-4568-9ea3-44c4a4bc0790',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001194s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:21:25+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.059712s] [吞吐率:16.75req/s] [内存消耗:2,874.48kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002012s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000658s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'fe63123a-e640-4a8a-a3e6-f6ce20d0f669',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001809s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:22:08+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.054248s] [吞吐率:18.43req/s] [内存消耗:2,874.54kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001438s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000252s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'e2e8718b-abcf-402c-967b-3845ade3d304',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001309s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:22:27+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.071990s] [吞吐率:13.89req/s] [内存消耗:2,874.54kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002071s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000492s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '0678ac9b-d7e3-46ce-9bb5-c817d72a58f7',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001218s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:24:45+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.077942s] [吞吐率:12.83req/s] [内存消耗:2,875.37kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002091s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000465s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'adc72989-5514-425a-a4c6-49685d5ed1f4',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001378s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:24:48+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.063652s] [吞吐率:15.71req/s] [内存消耗:2,875.37kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002102s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000830s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '42eb59a2-f72f-4ad8-9cd4-429fbc3ca438',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001137s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:24:50+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.061956s] [吞吐率:16.14req/s] [内存消耗:2,875.37kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001417s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000259s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '4d3b715a-4430-4380-b8ee-182d0e0572f4',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001080s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:25:00+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.043310s] [吞吐率:23.09req/s] [内存消耗:2,239.23kb] [文件加载:119]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001541s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000274s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '782f4276-2aa3-4766-bf74-766f31b87d05',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001145s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]语法解析错误: syntax error, unexpected '$v' (T_VARIABLE)[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\model\IntroduceModel.php:37]
+---------------------------------------------------------------
+[ 2020-06-08T17:25:12+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.070581s] [吞吐率:14.17req/s] [内存消耗:2,875.37kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002409s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000272s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'd9f004b1-7e47-43ea-b453-7a8e3399f2fd',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001042s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:25:23+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.054780s] [吞吐率:18.25req/s] [内存消耗:2,875.37kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001465s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000261s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'a59d1a6a-5fbf-422c-bf78-e94c2b438fd5',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001068s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:25:34+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.054439s] [吞吐率:18.37req/s] [内存消耗:2,874.99kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001590s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000279s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '7db53f37-20e6-435d-b03b-143a1e5f75a3',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001263s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:25:50+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.060349s] [吞吐率:16.57req/s] [内存消耗:2,875.02kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001553s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000405s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '49229a7c-d5c9-4bbf-9879-c18857ed1fe6',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001021s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:26:18+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.055878s] [吞吐率:17.90req/s] [内存消耗:2,871.67kb] [文件加载:122]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002106s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000270s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'dfa0a59a-b282-458b-866d-4c01a181fddf',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001019s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:26:35+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.062138s] [吞吐率:16.09req/s] [内存消耗:2,875.20kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001739s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000260s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'e0b76c9a-1ba0-4ea9-b218-e2818ad74aab',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001076s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:26:42+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.066618s] [吞吐率:15.01req/s] [内存消耗:2,875.02kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000026s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001853s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000310s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'e8c2305f-ca9c-43f5-abb5-543e7f4f71c3',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001082s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:27:13+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.077207s] [吞吐率:12.95req/s] [内存消耗:2,874.99kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002125s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000440s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '03dfcd04-45e7-45a2-a5eb-abd0a2db5e8a',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001224s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:28:13+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.067167s] [吞吐率:14.89req/s] [内存消耗:2,875.02kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001628s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000384s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '6aeca1c4-840b-402c-8ae2-3f2b842f68a5',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001012s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:28:58+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.090636s] [吞吐率:11.03req/s] [内存消耗:2,875.38kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000174s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002403s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.001986s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '1233e523-c85a-48d8-a991-5a7e3bf8b731',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001388s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:29:02+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/a
+[运行时间:0.137368s] [吞吐率:7.28req/s] [内存消耗:2,201.58kb] [文件加载:116]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001544s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000246s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'a',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '639bcee0-6985-4d8d-aac2-79848c0e1e51',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001095s ]
+[ info ] [ RUN ] app\api\controller\Index->a[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:29:08+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.056957s] [吞吐率:17.56req/s] [内存消耗:2,875.38kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001740s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000296s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'd742573f-8b91-4240-a8c0-a08b1d099a9a',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001582s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:29:40+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.157256s] [吞吐率:6.36req/s] [内存消耗:2,874.95kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001574s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000298s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '86bf226e-1195-4737-8d60-5665bc6709be',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001025s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:29:43+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/a
+[运行时间:0.044143s] [吞吐率:22.65req/s] [内存消耗:2,235.95kb] [文件加载:119]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000081s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002067s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000367s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'a',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '155926d8-2b48-4ea1-a0c3-3a91ea55122e',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001737s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:30:01+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/a
+[运行时间:0.036837s] [吞吐率:27.15req/s] [内存消耗:2,201.58kb] [文件加载:116]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001391s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000271s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'a',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '53c4f89a-e682-41e7-94bc-6ee34aa727ca',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000996s ]
+[ info ] [ RUN ] app\api\controller\Index->a[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:30:43+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.063146s] [吞吐率:15.84req/s] [内存消耗:3,026.87kb] [文件加载:127]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001442s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000652s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'b15e2c28-2b2c-499d-a840-8b077625e889',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001059s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: [] operator not supported for strings[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\model\IntroduceModel.php:36]
+---------------------------------------------------------------
+[ 2020-06-08T17:31:52+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.077365s] [吞吐率:12.93req/s] [内存消耗:2,875.45kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002457s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000688s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'b07a8e64-6d51-4a48-9630-5263c0842f1e',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001463s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:32:36+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.059405s] [吞吐率:16.83req/s] [内存消耗:2,875.45kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001979s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000322s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'dd1145de-36eb-4fbc-be08-fa6e168c9aac',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001030s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:33:02+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.070536s] [吞吐率:14.18req/s] [内存消耗:2,875.83kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001636s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000484s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '4308109b-eb66-44a9-b4e8-6c33ad7771a1',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001501s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:38:44+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allType
+[运行时间:0.064661s] [吞吐率:15.47req/s] [内存消耗:2,239.81kb] [文件加载:119]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000489s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002822s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000573s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allType',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '902f5044-43b7-4794-911a-4675863a011e',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001551s ]
+[ info ] [ RUN ] app\api\controller\Index->allType[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: Class 'app\api\mode\controller\Type' not found[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php:41]
+---------------------------------------------------------------
+[ 2020-06-08T17:39:00+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allType
+[运行时间:0.068707s] [吞吐率:14.55req/s] [内存消耗:2,871.11kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001409s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000481s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allType',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '174bc22b-25ac-4e91-89b0-19472b03cca0',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001495s ]
+[ info ] [ RUN ] app\api\controller\Index->allType[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:41:17+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allType
+[运行时间:0.070901s] [吞吐率:14.10req/s] [内存消耗:2,871.11kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003127s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000567s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allType',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '72dadc1d-cddf-4f08-ac52-4f8b32a56d13',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001900s ]
+[ info ] [ RUN ] app\api\controller\Index->allType[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:43:15+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.043084s] [吞吐率:23.21req/s] [内存消耗:2,235.61kb] [文件加载:118]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002092s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000260s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '16c24940-b8ff-4f09-acc1-93ed0c5df9eb',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000990s ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]Class Request does not exist[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\library\think\App.php:403]
+---------------------------------------------------------------
+[ 2020-06-08T17:43:23+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.052096s] [吞吐率:19.20req/s] [内存消耗:2,235.66kb] [文件加载:118]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001992s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000732s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '7cfc2d68-2de8-4295-93de-b3402cc4d5b1',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001528s ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]Class app\api\controller\Request does not exist[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\library\think\App.php:403]
+---------------------------------------------------------------
+[ 2020-06-08T17:43:42+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.136399s] [吞吐率:7.33req/s] [内存消耗:2,203.95kb] [文件加载:116]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001981s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000266s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'fd329225-729a-404b-bd61-8789c0991ec7',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001089s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:43:55+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.054955s] [吞吐率:18.20req/s] [内存消耗:2,204.75kb] [文件加载:116]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002091s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000437s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'ae2364ac-eaab-4a23-903e-3d941572b115',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001532s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:44:56+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.040888s] [吞吐率:24.46req/s] [内存消耗:2,201.61kb] [文件加载:115]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001512s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000600s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '4fc1d735-c657-47e3-9122-d67ba12ed419',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001093s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:45:08+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.035427s] [吞吐率:28.23req/s] [内存消耗:2,201.61kb] [文件加载:115]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001479s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000259s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'e06e75dd-cd55-4f68-83d0-12ac1a9c634a',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001095s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:45:29+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.049110s] [吞吐率:20.36req/s] [内存消耗:2,201.61kb] [文件加载:115]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002109s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000527s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '711aff5d-0c63-4182-9876-599786818bef',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001194s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:45:37+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.033964s] [吞吐率:29.44req/s] [内存消耗:2,201.61kb] [文件加载:115]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001466s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000338s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '0a376b58-c085-45c9-a303-e053dcb31fdd',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001013s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:45:54+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.043041s] [吞吐率:23.23req/s] [内存消耗:2,201.61kb] [文件加载:115]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001999s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000280s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '1b0d052a-54fa-4a36-a926-90d44c874052',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001650s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:45:59+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.048936s] [吞吐率:20.43req/s] [内存消耗:2,236.43kb] [文件加载:118]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001607s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.001508s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '7e085393-6a37-45c8-92ce-4516d22fd9c8',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001786s ]
+[ info ] [ LOG ] INIT File
+[ error ] [0]Class Request does not exist[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\library\think\App.php:403]
+---------------------------------------------------------------
+[ 2020-06-08T17:46:07+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.047009s] [吞吐率:21.27req/s] [内存消耗:2,201.61kb] [文件加载:115]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001564s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000272s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '8a8cff7e-1833-46d7-90e2-26f9b5afe275',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000980s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:48:15+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.147545s] [吞吐率:6.78req/s] [内存消耗:2,242.54kb] [文件加载:120]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000225s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002567s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000503s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '54e3cc4d-f83d-42c7-a638-dc7d091e2a5d',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001286s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+[ error ] [8]Array to string conversion[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php:53]
+---------------------------------------------------------------
+[ 2020-06-08T17:48:27+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.037821s] [吞吐率:26.44req/s] [内存消耗:2,203.05kb] [文件加载:116]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001369s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000325s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '1361c083-dee6-4d83-aa1f-ff0700364b94',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001032s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:48:42+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.047364s] [吞吐率:21.11req/s] [内存消耗:2,203.90kb] [文件加载:116]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002136s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000595s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '158',
+  'content-type' => 'multipart/form-data; boundary=--------------------------825452629305211964560705',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '31ac911c-aa50-48d2-91e0-c3d9f6cc0c3f',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002511s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:48:52+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.044090s] [吞吐率:22.68req/s] [内存消耗:2,203.68kb] [文件加载:116]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002051s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000411s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'bb62cfa9-96e5-4e93-82f6-7c74e63043f1',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002136s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:49:14+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.043777s] [吞吐率:22.84req/s] [内存消耗:2,202.24kb] [文件加载:115]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001671s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000304s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'e0adde58-92c7-411e-9581-30938bfd9f00',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001397s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:52:33+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.074803s] [吞吐率:13.37req/s] [内存消耗:2,880.43kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002498s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000573s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'eda66f91-ad82-4ec0-94d2-2ebc307705fd',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001432s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:52:47+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.063293s] [吞吐率:15.80req/s] [内存消耗:2,880.43kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001888s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000304s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'a1da6183-9a04-4261-907b-113d262ff7dc',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001093s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:52:55+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.049206s] [吞吐率:20.32req/s] [内存消耗:2,816.13kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001688s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000276s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'de364963-6d9a-42d0-9b88-9baea104b1d7',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001062s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:53:42+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.064596s] [吞吐率:15.48req/s] [内存消耗:2,880.18kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001747s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000282s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '2d8f284f-1b38-4460-992e-8771a6bda7e6',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001128s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:53:49+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.060396s] [吞吐率:16.56req/s] [内存消耗:2,877.98kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001756s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000478s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '4505bf46-c8e6-4a29-a8f1-d4f5bc03fcca',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001137s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:54:03+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.064144s] [吞吐率:15.59req/s] [内存消耗:2,878.23kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001563s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000263s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '020e78ae-273d-47d9-9439-e94f75f09a93',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001131s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:54:21+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.163847s] [吞吐率:6.10req/s] [内存消耗:3,028.08kb] [文件加载:126]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002003s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000407s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'abc04170-5d8a-408d-9c9f-1c2a5fff9f4d',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001172s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: Call to a member function toArray() on array[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\model\IntroduceModel.php:32]
+---------------------------------------------------------------
+[ 2020-06-08T17:54:30+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.049913s] [吞吐率:20.03req/s] [内存消耗:2,968.02kb] [文件加载:126]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000027s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001594s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000409s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '5ece9ca8-ad52-43ed-91b3-fba1ca783838',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001350s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+[ error ] [0]method not exist:think\db\Query->toArray[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\library\think\db\Query.php:103]
+---------------------------------------------------------------
+[ 2020-06-08T17:54:40+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.078035s] [吞吐率:12.81req/s] [内存消耗:2,878.23kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002597s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000839s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '7592b98f-9ba0-493d-8f65-49bd0c9148c7',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001225s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:54:53+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.055985s] [吞吐率:17.86req/s] [内存消耗:3,028.08kb] [文件加载:126]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001552s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000381s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'cee419e1-26bd-4c50-9c89-d54f496aea59',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001015s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: Call to a member function toArray() on array[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\model\IntroduceModel.php:31]
+---------------------------------------------------------------
+[ 2020-06-08T17:56:00+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.102731s] [吞吐率:9.73req/s] [内存消耗:2,913.90kb] [文件加载:125]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000156s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002264s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000460s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '476b4893-76fd-4f26-b9ac-cc1801373b62',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001908s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:56:08+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce?id=1
+[运行时间:0.092775s] [吞吐率:10.78req/s] [内存消耗:2,916.83kb] [文件加载:125]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000036s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001634s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000355s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'c7df0ad6-24c1-45ea-bf0b-b3719cda7370',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001337s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:56:20+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce?id=1
+[运行时间:0.060138s] [吞吐率:16.63req/s] [内存消耗:2,916.95kb] [文件加载:125]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000094s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002114s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000314s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '9da8c6f1-af72-4a51-9758-06b3afead645',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001650s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:56:27+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.062612s] [吞吐率:15.97req/s] [内存消耗:2,914.02kb] [文件加载:125]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001684s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000271s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '47b80fe6-0d8a-43e3-8d85-f5473aa9a9cf',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001256s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:56:41+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.054654s] [吞吐率:18.30req/s] [内存消耗:2,916.23kb] [文件加载:125]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000032s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001946s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000331s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'f7a9ed83-4765-4ccc-9c06-1b7e44369564',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001305s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:56:57+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.058832s] [吞吐率:17.00req/s] [内存消耗:2,915.98kb] [文件加载:125]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001698s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000279s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '60bc0ff1-7612-441d-b809-0d16c3d60b1e',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001871s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:57:04+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.169191s] [吞吐率:5.91req/s] [内存消耗:3,028.16kb] [文件加载:126]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001439s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000292s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '83e1a837-458d-4543-b827-59706c16661f',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000997s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+[ error ] [0]致命错误: Call to a member function toArray() on array[E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\model\IntroduceModel.php:32]
+---------------------------------------------------------------
+[ 2020-06-08T17:57:12+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.055574s] [吞吐率:17.99req/s] [内存消耗:2,880.31kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001416s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000275s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'ffdec4db-469b-43df-bafa-153da5743130',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001028s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:57:26+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce?id=1
+[运行时间:0.059400s] [吞吐率:16.83req/s] [内存消耗:2,881.12kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001527s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000264s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '5dfab370-ce83-40f3-a78d-560a075577ce',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001036s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:58:21+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduce?id=1
+[运行时间:0.091085s] [吞吐率:10.98req/s] [内存消耗:2,879.82kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002003s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.002468s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '1b2e13b8-9841-4127-bc09-1aab7f4370ef',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001500s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:58:26+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.047867s] [吞吐率:20.89req/s] [内存消耗:2,207.34kb] [文件加载:117]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001653s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000260s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '06342694-25d2-462e-b559-9a12e503b871',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001115s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T17:58:34+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.079080s] [吞吐率:12.65req/s] [内存消耗:2,879.66kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000036s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001669s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000303s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'd7b8c9dd-c491-48f6-b62d-66374ece903d',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000989s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:00:47+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.056234s] [吞吐率:17.78req/s] [内存消耗:2,209.05kb] [文件加载:117]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002160s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000614s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '1b056bfa-1429-4f98-9c19-f6a525016103',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001195s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:00:57+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.164714s] [吞吐率:6.07req/s] [内存消耗:2,882.44kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.105345s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000271s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '285ea335-2656-4497-9887-ad06f33cb95d',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001059s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:01:28+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.036449s] [吞吐率:27.44req/s] [内存消耗:2,208.69kb] [文件加载:117]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001513s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000260s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '27addbd4-e929-4d66-a820-285942fb8765',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '0',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001156s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:01:35+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.053319s] [吞吐率:18.76req/s] [内存消耗:2,881.67kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002707s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000265s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '5',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '8a152ecb-f0b0-421b-a01e-6f7ca198b8bd',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '11',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001043s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:01:38+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.038935s] [吞吐率:25.68req/s] [内存消耗:2,208.69kb] [文件加载:117]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001547s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000259s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'fd8964ec-80c1-4a53-a64c-72d2ca92bc59',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '0',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001552s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:01:44+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.062738s] [吞吐率:15.94req/s] [内存消耗:2,881.67kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001603s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000435s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '6',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '950f3060-4da2-44e0-b378-786da56637c7',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '111',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001625s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:01:47+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.052896s] [吞吐率:18.91req/s] [内存消耗:2,882.22kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001734s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000278s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '110dc01b-d9af-433a-87c1-87751b569827',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '4',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001092s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:01:54+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.060440s] [吞吐率:16.55req/s] [内存消耗:2,882.44kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001628s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000437s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '232c79ef-1907-4c46-8e21-dfb5944d73d2',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001315s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:02:24+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo
+[运行时间:0.069494s] [吞吐率:14.39req/s] [内存消耗:2,882.29kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001752s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000347s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'e3a8f00c-926a-443a-94e4-72a585c401a4',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001252s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:02:42+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.075599s] [吞吐率:13.23req/s] [内存消耗:2,883.20kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001504s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000333s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '95f493ed-568c-4e31-995c-486539a89f94',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001333s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:02:44+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.076061s] [吞吐率:13.15req/s] [内存消耗:2,882.44kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002182s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000301s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '493b15e9-205b-4297-b473-32dc4a7b82d3',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001001s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:02:47+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo
+[运行时间:0.073069s] [吞吐率:13.69req/s] [内存消耗:2,882.29kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001930s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000469s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'a073d740-61bc-4dd8-8b0e-1087f95c781a',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001692s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:02:52+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.089041s] [吞吐率:11.23req/s] [内存消耗:2,882.44kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000027s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002334s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000969s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'c8ba36b2-6af1-4a0d-976e-14b65bfcbc86',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002577s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:02:56+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo?id=1
+[运行时间:0.058468s] [吞吐率:17.10req/s] [内存消耗:2,882.44kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001600s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000248s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'ca5b6f6b-211e-4fb8-ab28-831f8888b360',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000989s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:03:13+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allIntroduce
+[运行时间:0.073177s] [吞吐率:13.67req/s] [内存消耗:2,884.04kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000103s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002545s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000489s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allIntroduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '1b6de9bb-c367-423e-b979-ef6d4f219505',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001318s ]
+[ info ] [ RUN ] app\api\controller\Index->allIntroduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:03:18+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/allType
+[运行时间:0.061881s] [吞吐率:16.16req/s] [内存消耗:2,873.38kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001540s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000312s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'allType',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'fff544f0-88a3-4417-a317-256e78972837',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001124s ]
+[ info ] [ RUN ] app\api\controller\Index->allType[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:03:22+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduce
+[运行时间:0.059828s] [吞吐率:16.71req/s] [内存消耗:2,883.20kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001650s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000372s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduce',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '92895562-f057-4637-941a-0bdcad15a91b',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001083s ]
+[ info ] [ RUN ] app\api\controller\Index->introduce[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:03:34+08:00 ] 127.0.0.1 POST s473.top/fastadmin/public/api/index/introduceInfo
+[运行时间:0.053409s] [吞吐率:18.72req/s] [内存消耗:2,882.29kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001891s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000254s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'introduceInfo',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '4',
+  'content-type' => 'application/x-www-form-urlencoded',
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => '3da6a977-fb03-4ccd-a48f-c3bd4ed04815',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+  'id' => '1',
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001098s ]
+[ info ] [ RUN ] app\api\controller\Index->introduceInfo[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2020-06-08T18:13:48+08:00 ] 127.0.0.1 GET s473.top/fastadmin/public/api/index/aboutUs
+[运行时间:0.174191s] [吞吐率:5.74req/s] [内存消耗:2,873.99kb] [文件加载:123]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000173s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002698s ]
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000533s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'api',
+    1 => 'index',
+    2 => 'aboutUs',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'connection' => 'close',
+  'accept-encoding' => 'gzip, deflate, br',
+  'host' => 's473.top',
+  'postman-token' => 'bc8c35d8-e010-44be-8de6-2500d56df791',
+  'cache-control' => 'no-cache',
+  'accept' => '*/*',
+  'user-agent' => 'PostmanRuntime/7.25.0',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001452s ]
+[ info ] [ RUN ] app\api\controller\Index->aboutUs[ E:\PHPstudy\PHPTutorial\WWW\S473\fastadmin\application\api\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ LOG ] INIT File