18.log 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886
  1. ---------------------------------------------------------------
  2. [ 2021-09-18T01:31:54+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  3. [运行时间:0.014019s] [吞吐率:71.33req/s] [内存消耗:338.21kb] [文件加载:123]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000293s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  9. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  10. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000048s ]
  11. [ info ] [ ROUTE ] array (
  12. 'type' => 'module',
  13. 'module' =>
  14. array (
  15. 0 => 'apple-app-site-association',
  16. 1 => NULL,
  17. 2 => NULL,
  18. ),
  19. )
  20. [ info ] [ HEADER ] array (
  21. 'accept-encoding' => 'gzip',
  22. 'user-agent' => 'AASA-Bot/1.0.0',
  23. 'host' => 'voicechat.lanmaonet.com',
  24. 'content-type' => '',
  25. 'content-length' => '',
  26. )
  27. [ info ] [ PARAM ] array (
  28. )
  29. [ info ] [ LOG ] INIT File
  30. ---------------------------------------------------------------
  31. [ 2021-09-18T01:55:55+08:00 ] 125.78.85.169 GET voicechat.lanmaonet.com/apple-app-site-association
  32. [运行时间:0.005510s] [吞吐率:181.49req/s] [内存消耗:340.17kb] [文件加载:123]
  33. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  34. [ info ] [ CACHE ] INIT File
  35. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000219s ]
  36. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  37. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  38. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  39. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  40. [ info ] [ ROUTE ] array (
  41. 'type' => 'module',
  42. 'module' =>
  43. array (
  44. 0 => 'apple-app-site-association',
  45. 1 => NULL,
  46. 2 => NULL,
  47. ),
  48. )
  49. [ info ] [ HEADER ] array (
  50. 'user-agent' => 'swcd (unknown version) CFNetwork/1126 Darwin/19.5.0',
  51. 'accept-encoding' => 'gzip, deflate, br',
  52. 'connection' => 'keep-alive',
  53. 'accept-language' => 'zh-cn',
  54. 'accept' => '*/*',
  55. 'host' => 'voicechat.lanmaonet.com',
  56. 'content-type' => '',
  57. 'content-length' => '',
  58. )
  59. [ info ] [ PARAM ] array (
  60. )
  61. [ info ] [ LOG ] INIT File
  62. ---------------------------------------------------------------
  63. [ 2021-09-18T02:48:15+08:00 ] 167.86.125.153 GET voicechat.lanmaonet.com/.env
  64. [运行时间:0.003691s] [吞吐率:270.93req/s] [内存消耗:338.77kb] [文件加载:123]
  65. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  66. [ info ] [ CACHE ] INIT File
  67. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000228s ]
  68. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  69. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  70. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  71. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  72. [ info ] [ ROUTE ] array (
  73. 'type' => 'module',
  74. 'module' =>
  75. array (
  76. 0 => '.env',
  77. 1 => NULL,
  78. 2 => NULL,
  79. ),
  80. )
  81. [ info ] [ HEADER ] array (
  82. 'connection' => 'keep-alive',
  83. 'accept' => '*/*',
  84. 'accept-encoding' => 'gzip, deflate',
  85. 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',
  86. 'host' => 'voicechat.lanmaonet.com',
  87. 'content-type' => '',
  88. 'content-length' => '',
  89. )
  90. [ info ] [ PARAM ] array (
  91. )
  92. [ info ] [ LOG ] INIT File
  93. ---------------------------------------------------------------
  94. [ 2021-09-18T02:52:49+08:00 ] 167.86.125.153 POST voicechat.lanmaonet.com/
  95. [运行时间:0.010634s] [吞吐率:94.04req/s] [内存消耗:468.17kb] [文件加载:135]
  96. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  97. [ info ] [ CACHE ] INIT File
  98. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000207s ]
  99. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  100. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  101. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  102. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000047s ]
  103. [ info ] [ ROUTE ] array (
  104. 'type' => 'module',
  105. 'module' =>
  106. array (
  107. 0 => '',
  108. 1 => NULL,
  109. 2 => NULL,
  110. ),
  111. )
  112. [ info ] [ HEADER ] array (
  113. 'content-type' => 'application/x-www-form-urlencoded',
  114. 'content-length' => '20',
  115. 'connection' => 'keep-alive',
  116. 'accept' => '*/*',
  117. 'accept-encoding' => 'gzip, deflate',
  118. 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',
  119. 'host' => 'voicechat.lanmaonet.com',
  120. )
  121. [ info ] [ PARAM ] array (
  122. '0x' =>
  123. array (
  124. 0 => 'androxgh0st',
  125. ),
  126. )
  127. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  128. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000097s ]
  129. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  130. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000036s ]
  131. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  132. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  133. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  134. 0 => 'user',
  135. 1 => 'site',
  136. 2 => 'config',
  137. ) ]
  138. [ info ] [ LOG ] INIT File
  139. ---------------------------------------------------------------
  140. [ 2021-09-18T02:57:07+08:00 ] 167.86.125.153 GET voicechat.lanmaonet.com/.env
  141. [运行时间:0.005570s] [吞吐率:179.54req/s] [内存消耗:338.77kb] [文件加载:123]
  142. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  143. [ info ] [ CACHE ] INIT File
  144. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  145. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  146. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  147. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  148. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  149. [ info ] [ ROUTE ] array (
  150. 'type' => 'module',
  151. 'module' =>
  152. array (
  153. 0 => '.env',
  154. 1 => NULL,
  155. 2 => NULL,
  156. ),
  157. )
  158. [ info ] [ HEADER ] array (
  159. 'connection' => 'keep-alive',
  160. 'accept' => '*/*',
  161. 'accept-encoding' => 'gzip, deflate',
  162. 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',
  163. 'host' => 'voicechat.lanmaonet.com',
  164. 'content-type' => '',
  165. 'content-length' => '',
  166. )
  167. [ info ] [ PARAM ] array (
  168. )
  169. [ info ] [ LOG ] INIT File
  170. ---------------------------------------------------------------
  171. [ 2021-09-18T03:01:23+08:00 ] 167.86.125.153 POST voicechat.lanmaonet.com/
  172. [运行时间:0.004904s] [吞吐率:203.92req/s] [内存消耗:468.17kb] [文件加载:135]
  173. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  174. [ info ] [ CACHE ] INIT File
  175. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000188s ]
  176. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  177. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  178. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  179. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  180. [ info ] [ ROUTE ] array (
  181. 'type' => 'module',
  182. 'module' =>
  183. array (
  184. 0 => '',
  185. 1 => NULL,
  186. 2 => NULL,
  187. ),
  188. )
  189. [ info ] [ HEADER ] array (
  190. 'content-type' => 'application/x-www-form-urlencoded',
  191. 'content-length' => '20',
  192. 'connection' => 'keep-alive',
  193. 'accept' => '*/*',
  194. 'accept-encoding' => 'gzip, deflate',
  195. 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',
  196. 'host' => 'voicechat.lanmaonet.com',
  197. )
  198. [ info ] [ PARAM ] array (
  199. '0x' =>
  200. array (
  201. 0 => 'androxgh0st',
  202. ),
  203. )
  204. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  205. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  206. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  207. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000031s ]
  208. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  209. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  210. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  211. 0 => 'user',
  212. 1 => 'site',
  213. 2 => 'config',
  214. ) ]
  215. [ info ] [ LOG ] INIT File
  216. ---------------------------------------------------------------
  217. [ 2021-09-18T03:48:02+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  218. [运行时间:0.003558s] [吞吐率:281.06req/s] [内存消耗:338.22kb] [文件加载:123]
  219. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  220. [ info ] [ CACHE ] INIT File
  221. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000214s ]
  222. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  223. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  224. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  225. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  226. [ info ] [ ROUTE ] array (
  227. 'type' => 'module',
  228. 'module' =>
  229. array (
  230. 0 => 'apple-app-site-association',
  231. 1 => NULL,
  232. 2 => NULL,
  233. ),
  234. )
  235. [ info ] [ HEADER ] array (
  236. 'accept-encoding' => 'gzip',
  237. 'user-agent' => 'AASA-Bot/1.0.0',
  238. 'host' => 'voicechat.lanmaonet.com',
  239. 'content-type' => '',
  240. 'content-length' => '',
  241. )
  242. [ info ] [ PARAM ] array (
  243. )
  244. [ info ] [ LOG ] INIT File
  245. ---------------------------------------------------------------
  246. [ 2021-09-18T04:49:41+08:00 ] 113.31.114.242 GET voicechat.lanmaonet.com/
  247. [运行时间:0.005280s] [吞吐率:189.40req/s] [内存消耗:469.00kb] [文件加载:135]
  248. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  249. [ info ] [ CACHE ] INIT File
  250. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000269s ]
  251. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  252. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  253. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  254. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  255. [ info ] [ ROUTE ] array (
  256. 'type' => 'module',
  257. 'module' =>
  258. array (
  259. 0 => '',
  260. 1 => NULL,
  261. 2 => NULL,
  262. ),
  263. )
  264. [ info ] [ HEADER ] array (
  265. 'accept-language' => 'zh-CN,zh;q=0.9',
  266. 'cache-control' => 'no-cache',
  267. 'connection' => 'keep-alive',
  268. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  269. 'accept-encoding' => 'gzip, deflate',
  270. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.27 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/601.1.27',
  271. 'host' => 'voicechat.lanmaonet.com',
  272. 'content-type' => '',
  273. 'content-length' => '',
  274. )
  275. [ info ] [ PARAM ] array (
  276. )
  277. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  278. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  279. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000077s ]
  280. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000035s ]
  281. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  282. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  283. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  284. 0 => 'user',
  285. 1 => 'site',
  286. 2 => 'config',
  287. ) ]
  288. [ info ] [ LOG ] INIT File
  289. ---------------------------------------------------------------
  290. [ 2021-09-18T04:58:41+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  291. [运行时间:0.004333s] [吞吐率:230.79req/s] [内存消耗:338.22kb] [文件加载:123]
  292. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  293. [ info ] [ CACHE ] INIT File
  294. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000247s ]
  295. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  296. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  297. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  298. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  299. [ info ] [ ROUTE ] array (
  300. 'type' => 'module',
  301. 'module' =>
  302. array (
  303. 0 => 'apple-app-site-association',
  304. 1 => NULL,
  305. 2 => NULL,
  306. ),
  307. )
  308. [ info ] [ HEADER ] array (
  309. 'accept-encoding' => 'gzip',
  310. 'user-agent' => 'AASA-Bot/1.0.0',
  311. 'host' => 'voicechat.lanmaonet.com',
  312. 'content-type' => '',
  313. 'content-length' => '',
  314. )
  315. [ info ] [ PARAM ] array (
  316. )
  317. [ info ] [ LOG ] INIT File
  318. ---------------------------------------------------------------
  319. [ 2021-09-18T07:05:20+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  320. [运行时间:0.006613s] [吞吐率:151.22req/s] [内存消耗:338.22kb] [文件加载:123]
  321. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  322. [ info ] [ CACHE ] INIT File
  323. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000288s ]
  324. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  325. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  326. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  327. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
  328. [ info ] [ ROUTE ] array (
  329. 'type' => 'module',
  330. 'module' =>
  331. array (
  332. 0 => 'apple-app-site-association',
  333. 1 => NULL,
  334. 2 => NULL,
  335. ),
  336. )
  337. [ info ] [ HEADER ] array (
  338. 'accept-encoding' => 'gzip',
  339. 'user-agent' => 'AASA-Bot/1.0.0',
  340. 'host' => 'voicechat.lanmaonet.com',
  341. 'content-type' => '',
  342. 'content-length' => '',
  343. )
  344. [ info ] [ PARAM ] array (
  345. )
  346. [ info ] [ LOG ] INIT File
  347. ---------------------------------------------------------------
  348. [ 2021-09-18T08:24:51+08:00 ] 207.46.13.95 GET voicechat.lanmaonet.com/
  349. [运行时间:0.007846s] [吞吐率:127.45req/s] [内存消耗:468.58kb] [文件加载:135]
  350. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  351. [ info ] [ CACHE ] INIT File
  352. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000988s ]
  353. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000051s ]
  354. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000064s ]
  355. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  356. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  357. [ info ] [ ROUTE ] array (
  358. 'type' => 'module',
  359. 'module' =>
  360. array (
  361. 0 => '',
  362. 1 => NULL,
  363. 2 => NULL,
  364. ),
  365. )
  366. [ info ] [ HEADER ] array (
  367. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  368. 'from' => 'bingbot(at)microsoft.com',
  369. 'accept-encoding' => 'gzip, deflate',
  370. 'accept' => '*/*',
  371. 'pragma' => 'no-cache',
  372. 'cache-control' => 'no-cache',
  373. 'host' => 'voicechat.lanmaonet.com',
  374. 'content-type' => '',
  375. 'content-length' => '',
  376. )
  377. [ info ] [ PARAM ] array (
  378. )
  379. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  380. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  381. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  382. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000037s ]
  383. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  384. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  385. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  386. 0 => 'user',
  387. 1 => 'site',
  388. 2 => 'config',
  389. ) ]
  390. [ info ] [ LOG ] INIT File
  391. ---------------------------------------------------------------
  392. [ 2021-09-18T09:28:35+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  393. [运行时间:0.006506s] [吞吐率:153.71req/s] [内存消耗:338.22kb] [文件加载:123]
  394. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  395. [ info ] [ CACHE ] INIT File
  396. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000228s ]
  397. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  398. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  399. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  400. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  401. [ info ] [ ROUTE ] array (
  402. 'type' => 'module',
  403. 'module' =>
  404. array (
  405. 0 => 'apple-app-site-association',
  406. 1 => NULL,
  407. 2 => NULL,
  408. ),
  409. )
  410. [ info ] [ HEADER ] array (
  411. 'accept-encoding' => 'gzip',
  412. 'user-agent' => 'AASA-Bot/1.0.0',
  413. 'host' => 'voicechat.lanmaonet.com',
  414. 'content-type' => '',
  415. 'content-length' => '',
  416. )
  417. [ info ] [ PARAM ] array (
  418. )
  419. [ info ] [ LOG ] INIT File
  420. ---------------------------------------------------------------
  421. [ 2021-09-18T09:57:31+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/apple-app-site-association
  422. [运行时间:0.005991s] [吞吐率:166.92req/s] [内存消耗:340.17kb] [文件加载:123]
  423. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  424. [ info ] [ CACHE ] INIT File
  425. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000257s ]
  426. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  427. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  428. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  429. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  430. [ info ] [ ROUTE ] array (
  431. 'type' => 'module',
  432. 'module' =>
  433. array (
  434. 0 => 'apple-app-site-association',
  435. 1 => NULL,
  436. 2 => NULL,
  437. ),
  438. )
  439. [ info ] [ HEADER ] array (
  440. 'user-agent' => 'swcd (unknown version) CFNetwork/1128.0.1 Darwin/19.6.0',
  441. 'accept-encoding' => 'gzip, deflate, br',
  442. 'connection' => 'keep-alive',
  443. 'accept-language' => 'zh-cn',
  444. 'accept' => '*/*',
  445. 'host' => 'voicechat.lanmaonet.com',
  446. 'content-type' => '',
  447. 'content-length' => '',
  448. )
  449. [ info ] [ PARAM ] array (
  450. )
  451. [ info ] [ LOG ] INIT File
  452. ---------------------------------------------------------------
  453. [ 2021-09-18T10:00:29+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  454. [运行时间:0.004354s] [吞吐率:229.67req/s] [内存消耗:338.22kb] [文件加载:123]
  455. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  456. [ info ] [ CACHE ] INIT File
  457. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000231s ]
  458. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  459. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  460. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  461. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  462. [ info ] [ ROUTE ] array (
  463. 'type' => 'module',
  464. 'module' =>
  465. array (
  466. 0 => 'apple-app-site-association',
  467. 1 => NULL,
  468. 2 => NULL,
  469. ),
  470. )
  471. [ info ] [ HEADER ] array (
  472. 'accept-encoding' => 'gzip',
  473. 'user-agent' => 'AASA-Bot/1.0.0',
  474. 'host' => 'voicechat.lanmaonet.com',
  475. 'content-type' => '',
  476. 'content-length' => '',
  477. )
  478. [ info ] [ PARAM ] array (
  479. )
  480. [ info ] [ LOG ] INIT File
  481. ---------------------------------------------------------------
  482. [ 2021-09-18T10:11:09+08:00 ] 113.31.114.242 GET voicechat.lanmaonet.com/
  483. [运行时间:0.009905s] [吞吐率:100.96req/s] [内存消耗:469.00kb] [文件加载:135]
  484. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  485. [ info ] [ CACHE ] INIT File
  486. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.003081s ]
  487. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000052s ]
  488. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  489. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  490. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  491. [ info ] [ ROUTE ] array (
  492. 'type' => 'module',
  493. 'module' =>
  494. array (
  495. 0 => '',
  496. 1 => NULL,
  497. 2 => NULL,
  498. ),
  499. )
  500. [ info ] [ HEADER ] array (
  501. 'accept-language' => 'zh-CN,zh;q=0.9',
  502. 'cache-control' => 'no-cache',
  503. 'connection' => 'keep-alive',
  504. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  505. 'accept-encoding' => 'gzip, deflate',
  506. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.27 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/601.1.27',
  507. 'host' => 'voicechat.lanmaonet.com',
  508. 'content-type' => '',
  509. 'content-length' => '',
  510. )
  511. [ info ] [ PARAM ] array (
  512. )
  513. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  514. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  515. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  516. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000039s ]
  517. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  518. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  519. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  520. 0 => 'user',
  521. 1 => 'site',
  522. 2 => 'config',
  523. ) ]
  524. [ info ] [ LOG ] INIT File
  525. ---------------------------------------------------------------
  526. [ 2021-09-18T10:21:33+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  527. [运行时间:0.004470s] [吞吐率:223.71req/s] [内存消耗:338.22kb] [文件加载:123]
  528. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  529. [ info ] [ CACHE ] INIT File
  530. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000242s ]
  531. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  532. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  533. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  534. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  535. [ info ] [ ROUTE ] array (
  536. 'type' => 'module',
  537. 'module' =>
  538. array (
  539. 0 => 'apple-app-site-association',
  540. 1 => NULL,
  541. 2 => NULL,
  542. ),
  543. )
  544. [ info ] [ HEADER ] array (
  545. 'accept-encoding' => 'gzip',
  546. 'user-agent' => 'AASA-Bot/1.0.0',
  547. 'host' => 'voicechat.lanmaonet.com',
  548. 'content-type' => '',
  549. 'content-length' => '',
  550. )
  551. [ info ] [ PARAM ] array (
  552. )
  553. [ info ] [ LOG ] INIT File
  554. ---------------------------------------------------------------
  555. [ 2021-09-18T10:40:51+08:00 ] 40.77.167.27 GET voicechat.lanmaonet.com/
  556. [运行时间:0.005602s] [吞吐率:178.50req/s] [内存消耗:468.62kb] [文件加载:135]
  557. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  558. [ info ] [ CACHE ] INIT File
  559. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000255s ]
  560. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  561. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  562. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  563. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  564. [ info ] [ ROUTE ] array (
  565. 'type' => 'module',
  566. 'module' =>
  567. array (
  568. 0 => '',
  569. 1 => NULL,
  570. 2 => NULL,
  571. ),
  572. )
  573. [ info ] [ HEADER ] array (
  574. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  575. 'host' => 'voicechat.lanmaonet.com',
  576. 'from' => 'bingbot(at)microsoft.com',
  577. 'accept-encoding' => 'gzip, deflate',
  578. 'accept' => '*/*',
  579. 'pragma' => 'no-cache',
  580. 'connection' => 'Keep-Alive',
  581. 'cache-control' => 'no-cache',
  582. 'content-type' => '',
  583. 'content-length' => '',
  584. )
  585. [ info ] [ PARAM ] array (
  586. )
  587. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  588. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  589. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000069s ]
  590. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000033s ]
  591. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  592. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  593. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  594. 0 => 'user',
  595. 1 => 'site',
  596. 2 => 'config',
  597. ) ]
  598. [ info ] [ LOG ] INIT File
  599. ---------------------------------------------------------------
  600. [ 2021-09-18T10:52:08+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  601. [运行时间:0.004908s] [吞吐率:203.76req/s] [内存消耗:338.22kb] [文件加载:123]
  602. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  603. [ info ] [ CACHE ] INIT File
  604. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000250s ]
  605. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  606. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  607. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  608. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  609. [ info ] [ ROUTE ] array (
  610. 'type' => 'module',
  611. 'module' =>
  612. array (
  613. 0 => 'apple-app-site-association',
  614. 1 => NULL,
  615. 2 => NULL,
  616. ),
  617. )
  618. [ info ] [ HEADER ] array (
  619. 'accept-encoding' => 'gzip',
  620. 'user-agent' => 'AASA-Bot/1.0.0',
  621. 'host' => 'voicechat.lanmaonet.com',
  622. 'content-type' => '',
  623. 'content-length' => '',
  624. )
  625. [ info ] [ PARAM ] array (
  626. )
  627. [ info ] [ LOG ] INIT File
  628. ---------------------------------------------------------------
  629. [ 2021-09-18T10:56:36+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  630. [运行时间:0.004870s] [吞吐率:205.34req/s] [内存消耗:338.22kb] [文件加载:123]
  631. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  632. [ info ] [ CACHE ] INIT File
  633. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000273s ]
  634. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  635. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  636. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  637. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  638. [ info ] [ ROUTE ] array (
  639. 'type' => 'module',
  640. 'module' =>
  641. array (
  642. 0 => 'apple-app-site-association',
  643. 1 => NULL,
  644. 2 => NULL,
  645. ),
  646. )
  647. [ info ] [ HEADER ] array (
  648. 'accept-encoding' => 'gzip',
  649. 'user-agent' => 'AASA-Bot/1.0.0',
  650. 'host' => 'voicechat.lanmaonet.com',
  651. 'content-type' => '',
  652. 'content-length' => '',
  653. )
  654. [ info ] [ PARAM ] array (
  655. )
  656. [ info ] [ LOG ] INIT File
  657. ---------------------------------------------------------------
  658. [ 2021-09-18T11:44:17+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  659. [运行时间:0.004380s] [吞吐率:228.31req/s] [内存消耗:338.22kb] [文件加载:123]
  660. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  661. [ info ] [ CACHE ] INIT File
  662. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000238s ]
  663. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  664. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  665. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  666. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  667. [ info ] [ ROUTE ] array (
  668. 'type' => 'module',
  669. 'module' =>
  670. array (
  671. 0 => 'apple-app-site-association',
  672. 1 => NULL,
  673. 2 => NULL,
  674. ),
  675. )
  676. [ info ] [ HEADER ] array (
  677. 'accept-encoding' => 'gzip',
  678. 'user-agent' => 'AASA-Bot/1.0.0',
  679. 'host' => 'voicechat.lanmaonet.com',
  680. 'content-type' => '',
  681. 'content-length' => '',
  682. )
  683. [ info ] [ PARAM ] array (
  684. )
  685. [ info ] [ LOG ] INIT File
  686. ---------------------------------------------------------------
  687. [ 2021-09-18T12:30:23+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  688. [运行时间:0.004159s] [吞吐率:240.44req/s] [内存消耗:338.22kb] [文件加载:123]
  689. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  690. [ info ] [ CACHE ] INIT File
  691. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000240s ]
  692. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  693. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  694. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  695. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  696. [ info ] [ ROUTE ] array (
  697. 'type' => 'module',
  698. 'module' =>
  699. array (
  700. 0 => 'apple-app-site-association',
  701. 1 => NULL,
  702. 2 => NULL,
  703. ),
  704. )
  705. [ info ] [ HEADER ] array (
  706. 'accept-encoding' => 'gzip',
  707. 'user-agent' => 'AASA-Bot/1.0.0',
  708. 'host' => 'voicechat.lanmaonet.com',
  709. 'content-type' => '',
  710. 'content-length' => '',
  711. )
  712. [ info ] [ PARAM ] array (
  713. )
  714. [ info ] [ LOG ] INIT File
  715. ---------------------------------------------------------------
  716. [ 2021-09-18T14:13:51+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  717. [运行时间:0.004832s] [吞吐率:206.95req/s] [内存消耗:338.22kb] [文件加载:123]
  718. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  719. [ info ] [ CACHE ] INIT File
  720. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000232s ]
  721. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  722. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  723. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  724. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  725. [ info ] [ ROUTE ] array (
  726. 'type' => 'module',
  727. 'module' =>
  728. array (
  729. 0 => 'apple-app-site-association',
  730. 1 => NULL,
  731. 2 => NULL,
  732. ),
  733. )
  734. [ info ] [ HEADER ] array (
  735. 'accept-encoding' => 'gzip',
  736. 'user-agent' => 'AASA-Bot/1.0.0',
  737. 'host' => 'voicechat.lanmaonet.com',
  738. 'content-type' => '',
  739. 'content-length' => '',
  740. )
  741. [ info ] [ PARAM ] array (
  742. )
  743. [ info ] [ LOG ] INIT File
  744. ---------------------------------------------------------------
  745. [ 2021-09-18T15:12:43+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  746. [运行时间:0.003860s] [吞吐率:259.07req/s] [内存消耗:338.22kb] [文件加载:123]
  747. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  748. [ info ] [ CACHE ] INIT File
  749. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000266s ]
  750. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  751. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  752. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  753. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  754. [ info ] [ ROUTE ] array (
  755. 'type' => 'module',
  756. 'module' =>
  757. array (
  758. 0 => 'apple-app-site-association',
  759. 1 => NULL,
  760. 2 => NULL,
  761. ),
  762. )
  763. [ info ] [ HEADER ] array (
  764. 'accept-encoding' => 'gzip',
  765. 'user-agent' => 'AASA-Bot/1.0.0',
  766. 'host' => 'voicechat.lanmaonet.com',
  767. 'content-type' => '',
  768. 'content-length' => '',
  769. )
  770. [ info ] [ PARAM ] array (
  771. )
  772. [ info ] [ LOG ] INIT File
  773. ---------------------------------------------------------------
  774. [ 2021-09-18T16:41:28+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  775. [运行时间:0.026107s] [吞吐率:38.30req/s] [内存消耗:338.22kb] [文件加载:123]
  776. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  777. [ info ] [ CACHE ] INIT File
  778. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.002175s ]
  779. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  780. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  781. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  782. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000603s ]
  783. [ info ] [ ROUTE ] array (
  784. 'type' => 'module',
  785. 'module' =>
  786. array (
  787. 0 => 'apple-app-site-association',
  788. 1 => NULL,
  789. 2 => NULL,
  790. ),
  791. )
  792. [ info ] [ HEADER ] array (
  793. 'accept-encoding' => 'gzip',
  794. 'user-agent' => 'AASA-Bot/1.0.0',
  795. 'host' => 'voicechat.lanmaonet.com',
  796. 'content-type' => '',
  797. 'content-length' => '',
  798. )
  799. [ info ] [ PARAM ] array (
  800. )
  801. [ info ] [ LOG ] INIT File
  802. ---------------------------------------------------------------
  803. [ 2021-09-18T16:50:16+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  804. [运行时间:0.003350s] [吞吐率:298.51req/s] [内存消耗:338.22kb] [文件加载:123]
  805. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  806. [ info ] [ CACHE ] INIT File
  807. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000203s ]
  808. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  809. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  810. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  811. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  812. [ info ] [ ROUTE ] array (
  813. 'type' => 'module',
  814. 'module' =>
  815. array (
  816. 0 => 'apple-app-site-association',
  817. 1 => NULL,
  818. 2 => NULL,
  819. ),
  820. )
  821. [ info ] [ HEADER ] array (
  822. 'accept-encoding' => 'gzip',
  823. 'user-agent' => 'AASA-Bot/1.0.0',
  824. 'host' => 'voicechat.lanmaonet.com',
  825. 'content-type' => '',
  826. 'content-length' => '',
  827. )
  828. [ info ] [ PARAM ] array (
  829. )
  830. [ info ] [ LOG ] INIT File
  831. ---------------------------------------------------------------
  832. [ 2021-09-18T17:39:48+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/index/login?url=%2FlcFzdPIjLH.php%2Findex%2Findex
  833. [运行时间:0.023737s] [吞吐率:42.13req/s] [内存消耗:551.52kb] [文件加载:139]
  834. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  835. [ info ] [ CACHE ] INIT File
  836. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000207s ]
  837. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  838. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  839. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  840. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  841. [ info ] [ ROUTE ] array (
  842. 'type' => 'module',
  843. 'module' =>
  844. array (
  845. 0 => 'admin',
  846. 1 => 'index',
  847. 2 => 'login',
  848. ),
  849. )
  850. [ info ] [ HEADER ] array (
  851. 'te' => 'trailers',
  852. 'sec-fetch-user' => '?1',
  853. 'sec-fetch-site' => 'none',
  854. 'sec-fetch-mode' => 'navigate',
  855. 'sec-fetch-dest' => 'document',
  856. 'upgrade-insecure-requests' => '1',
  857. 'accept-encoding' => 'gzip, deflate, br',
  858. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  859. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  860. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  861. 'host' => 'voicechat.lanmaonet.com',
  862. 'content-type' => '',
  863. 'content-length' => '',
  864. )
  865. [ info ] [ PARAM ] array (
  866. 'url' => '/lcFzdPIjLH.php/index/index',
  867. )
  868. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  869. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000074s ]
  870. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  871. [ info ] [ SESSION ] INIT array (
  872. 'id' => '',
  873. 'var_session_id' => '',
  874. 'prefix' => 'think',
  875. 'type' => '',
  876. 'auto_start' => true,
  877. )
  878. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000040s ]
  879. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  880. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  881. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/index/login.html [ array (
  882. 0 => 'breadcrumb',
  883. 1 => 'site',
  884. 2 => 'config',
  885. 3 => 'auth',
  886. 4 => 'admin',
  887. 5 => 'background',
  888. 6 => 'title',
  889. ) ]
  890. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000732s ]
  891. [ info ] [ LOG ] INIT File
  892. ---------------------------------------------------------------
  893. [ 2021-09-18T17:39:49+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/index.php?s=/captcha
  894. [运行时间:0.022104s] [吞吐率:45.24req/s] [内存消耗:344.29kb] [文件加载:122]
  895. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000029s ]
  896. [ info ] [ CACHE ] INIT File
  897. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  898. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  899. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  900. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  901. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  902. [ info ] [ ROUTE ] array (
  903. 'type' => 'method',
  904. 'method' =>
  905. array (
  906. 0 => '\\think\\captcha\\CaptchaController',
  907. 1 => 'index',
  908. ),
  909. 'var' =>
  910. array (
  911. ),
  912. )
  913. [ info ] [ HEADER ] array (
  914. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g',
  915. 'te' => 'trailers',
  916. 'sec-fetch-site' => 'same-origin',
  917. 'sec-fetch-mode' => 'no-cors',
  918. 'sec-fetch-dest' => 'image',
  919. 'accept-encoding' => 'gzip, deflate, br',
  920. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  921. 'accept' => 'image/webp,*/*',
  922. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  923. 'host' => 'voicechat.lanmaonet.com',
  924. 'content-type' => '',
  925. 'content-length' => '',
  926. )
  927. [ info ] [ PARAM ] array (
  928. 'id' => NULL,
  929. )
  930. [ info ] [ RUN ] think\captcha\CaptchaController->index[ /www/wwwroot/voicechat.lanmaonet.com/vendor/topthink/think-captcha/src/CaptchaController.php ]
  931. [ info ] [ SESSION ] INIT array (
  932. 'id' => '',
  933. 'var_session_id' => '',
  934. 'prefix' => 'think',
  935. 'type' => '',
  936. 'auto_start' => true,
  937. )
  938. [ info ] [ LOG ] INIT File
  939. ---------------------------------------------------------------
  940. [ 2021-09-18T17:39:49+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1631957988&v=1631957988
  941. [运行时间:0.003939s] [吞吐率:253.86req/s] [内存消耗:552.56kb] [文件加载:140]
  942. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  943. [ info ] [ CACHE ] INIT File
  944. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000185s ]
  945. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  946. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  947. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  948. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  949. [ info ] [ ROUTE ] array (
  950. 'type' => 'module',
  951. 'module' =>
  952. array (
  953. 0 => 'admin',
  954. 1 => 'ajax',
  955. 2 => 'lang',
  956. ),
  957. )
  958. [ info ] [ HEADER ] array (
  959. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g',
  960. 'te' => 'trailers',
  961. 'sec-fetch-site' => 'same-origin',
  962. 'sec-fetch-mode' => 'no-cors',
  963. 'sec-fetch-dest' => 'script',
  964. 'accept-encoding' => 'gzip, deflate, br',
  965. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  966. 'accept' => '*/*',
  967. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  968. 'host' => 'voicechat.lanmaonet.com',
  969. 'content-type' => '',
  970. 'content-length' => '',
  971. )
  972. [ info ] [ PARAM ] array (
  973. 'callback' => 'define',
  974. 'controllername' => 'index',
  975. 'lang' => 'zh-cn',
  976. 'v' => '1631957988',
  977. )
  978. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  979. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  980. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  981. [ info ] [ SESSION ] INIT array (
  982. 'id' => '',
  983. 'var_session_id' => '',
  984. 'prefix' => 'think',
  985. 'type' => '',
  986. 'auto_start' => true,
  987. )
  988. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000031s ]
  989. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  990. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  991. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  992. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000014s ]
  993. [ info ] [ LOG ] INIT File
  994. ---------------------------------------------------------------
  995. [ 2021-09-18T17:39:53+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/index.php?s=/captcha&r=0.7780669451888704
  996. [运行时间:0.003831s] [吞吐率:261.03req/s] [内存消耗:344.45kb] [文件加载:122]
  997. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  998. [ info ] [ CACHE ] INIT File
  999. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000209s ]
  1000. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1001. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1002. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1003. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  1004. [ info ] [ ROUTE ] array (
  1005. 'type' => 'method',
  1006. 'method' =>
  1007. array (
  1008. 0 => '\\think\\captcha\\CaptchaController',
  1009. 1 => 'index',
  1010. ),
  1011. 'var' =>
  1012. array (
  1013. ),
  1014. )
  1015. [ info ] [ HEADER ] array (
  1016. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1017. 'te' => 'trailers',
  1018. 'sec-fetch-site' => 'same-origin',
  1019. 'sec-fetch-mode' => 'no-cors',
  1020. 'sec-fetch-dest' => 'image',
  1021. 'accept-encoding' => 'gzip, deflate, br',
  1022. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1023. 'accept' => 'image/webp,*/*',
  1024. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1025. 'host' => 'voicechat.lanmaonet.com',
  1026. 'content-type' => '',
  1027. 'content-length' => '',
  1028. )
  1029. [ info ] [ PARAM ] array (
  1030. 'r' => '0.7780669451888704',
  1031. 'id' => NULL,
  1032. )
  1033. [ info ] [ RUN ] think\captcha\CaptchaController->index[ /www/wwwroot/voicechat.lanmaonet.com/vendor/topthink/think-captcha/src/CaptchaController.php ]
  1034. [ info ] [ SESSION ] INIT array (
  1035. 'id' => '',
  1036. 'var_session_id' => '',
  1037. 'prefix' => 'think',
  1038. 'type' => '',
  1039. 'auto_start' => true,
  1040. )
  1041. [ info ] [ LOG ] INIT File
  1042. ---------------------------------------------------------------
  1043. [ 2021-09-18T17:39:56+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/index.php?s=/captcha&r=0.27575727604703393
  1044. [运行时间:0.016561s] [吞吐率:60.38req/s] [内存消耗:344.45kb] [文件加载:122]
  1045. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1046. [ info ] [ CACHE ] INIT File
  1047. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  1048. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  1049. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1050. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1051. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1052. [ info ] [ ROUTE ] array (
  1053. 'type' => 'method',
  1054. 'method' =>
  1055. array (
  1056. 0 => '\\think\\captcha\\CaptchaController',
  1057. 1 => 'index',
  1058. ),
  1059. 'var' =>
  1060. array (
  1061. ),
  1062. )
  1063. [ info ] [ HEADER ] array (
  1064. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1065. 'te' => 'trailers',
  1066. 'sec-fetch-site' => 'same-origin',
  1067. 'sec-fetch-mode' => 'no-cors',
  1068. 'sec-fetch-dest' => 'image',
  1069. 'accept-encoding' => 'gzip, deflate, br',
  1070. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1071. 'accept' => 'image/webp,*/*',
  1072. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1073. 'host' => 'voicechat.lanmaonet.com',
  1074. 'content-type' => '',
  1075. 'content-length' => '',
  1076. )
  1077. [ info ] [ PARAM ] array (
  1078. 'r' => '0.27575727604703393',
  1079. 'id' => NULL,
  1080. )
  1081. [ info ] [ RUN ] think\captcha\CaptchaController->index[ /www/wwwroot/voicechat.lanmaonet.com/vendor/topthink/think-captcha/src/CaptchaController.php ]
  1082. [ info ] [ SESSION ] INIT array (
  1083. 'id' => '',
  1084. 'var_session_id' => '',
  1085. 'prefix' => 'think',
  1086. 'type' => '',
  1087. 'auto_start' => true,
  1088. )
  1089. [ info ] [ LOG ] INIT File
  1090. ---------------------------------------------------------------
  1091. [ 2021-09-18T17:40:09+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/lcFzdPIjLH.php/index/login?url=%2FlcFzdPIjLH.php%2Findex%2Findex
  1092. [运行时间:0.021821s] [吞吐率:45.83req/s] [内存消耗:701.01kb] [文件加载:149]
  1093. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1094. [ info ] [ CACHE ] INIT File
  1095. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000209s ]
  1096. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1097. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1098. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1099. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000056s ]
  1100. [ info ] [ ROUTE ] array (
  1101. 'type' => 'module',
  1102. 'module' =>
  1103. array (
  1104. 0 => 'admin',
  1105. 1 => 'index',
  1106. 2 => 'login',
  1107. ),
  1108. )
  1109. [ info ] [ HEADER ] array (
  1110. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1111. 'te' => 'trailers',
  1112. 'sec-fetch-site' => 'same-origin',
  1113. 'sec-fetch-mode' => 'cors',
  1114. 'sec-fetch-dest' => 'empty',
  1115. 'origin' => 'https://voicechat.lanmaonet.com',
  1116. 'content-length' => '86',
  1117. 'x-requested-with' => 'XMLHttpRequest',
  1118. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  1119. 'accept-encoding' => 'gzip, deflate, br',
  1120. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1121. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1122. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1123. 'host' => 'voicechat.lanmaonet.com',
  1124. )
  1125. [ info ] [ PARAM ] array (
  1126. 'url' => '/lcFzdPIjLH.php/index/index',
  1127. '__token__' => 'f50a8ed883b70f9b2b4765417dd05ebe',
  1128. 'username' => 'admin',
  1129. 'password' => '123456',
  1130. 'captcha' => 'HXMX',
  1131. )
  1132. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1133. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  1134. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000072s ]
  1135. [ info ] [ SESSION ] INIT array (
  1136. 'id' => '',
  1137. 'var_session_id' => '',
  1138. 'prefix' => 'think',
  1139. 'type' => '',
  1140. 'auto_start' => true,
  1141. )
  1142. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000049s ]
  1143. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1144. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  1145. [ info ] [ DB ] INIT mysql
  1146. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.006875s ]
  1147. [ info ] [ LOG ] INIT File
  1148. ---------------------------------------------------------------
  1149. [ 2021-09-18T17:40:09+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/index/index
  1150. [运行时间:0.057720s] [吞吐率:17.33req/s] [内存消耗:1,373.55kb] [文件加载:158]
  1151. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1152. [ info ] [ CACHE ] INIT File
  1153. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  1154. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1155. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  1156. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1157. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1158. [ info ] [ ROUTE ] array (
  1159. 'type' => 'module',
  1160. 'module' =>
  1161. array (
  1162. 0 => 'admin',
  1163. 1 => 'index',
  1164. 2 => 'index',
  1165. ),
  1166. )
  1167. [ info ] [ HEADER ] array (
  1168. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1169. 'te' => 'trailers',
  1170. 'sec-fetch-user' => '?1',
  1171. 'sec-fetch-site' => 'same-origin',
  1172. 'sec-fetch-mode' => 'navigate',
  1173. 'sec-fetch-dest' => 'document',
  1174. 'upgrade-insecure-requests' => '1',
  1175. 'accept-encoding' => 'gzip, deflate, br',
  1176. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1177. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1178. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1179. 'host' => 'voicechat.lanmaonet.com',
  1180. 'content-type' => '',
  1181. 'content-length' => '',
  1182. )
  1183. [ info ] [ PARAM ] array (
  1184. )
  1185. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1186. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  1187. [ info ] [ SESSION ] INIT array (
  1188. 'id' => '',
  1189. 'var_session_id' => '',
  1190. 'prefix' => 'think',
  1191. 'type' => '',
  1192. 'auto_start' => true,
  1193. )
  1194. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  1195. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000034s ]
  1196. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1197. [ info ] [ RUN ] app\admin\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  1198. [ info ] [ DB ] INIT mysql
  1199. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/index/index.html [ array (
  1200. 0 => 'breadcrumb',
  1201. 1 => 'site',
  1202. 2 => 'config',
  1203. 3 => 'auth',
  1204. 4 => 'admin',
  1205. 5 => 'menulist',
  1206. 6 => 'navlist',
  1207. 7 => 'fixedmenu',
  1208. 8 => 'referermenu',
  1209. 9 => 'title',
  1210. ) ]
  1211. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000018s ]
  1212. [ info ] [ LOG ] INIT File
  1213. ---------------------------------------------------------------
  1214. [ 2021-09-18T17:40:09+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/dashboard?addtabs=1
  1215. [运行时间:0.029817s] [吞吐率:33.54req/s] [内存消耗:1,138.41kb] [文件加载:146]
  1216. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1217. [ info ] [ CACHE ] INIT File
  1218. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000141s ]
  1219. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1220. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1221. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1222. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1223. [ info ] [ ROUTE ] array (
  1224. 'type' => 'module',
  1225. 'module' =>
  1226. array (
  1227. 0 => 'admin',
  1228. 1 => 'dashboard',
  1229. 2 => NULL,
  1230. ),
  1231. )
  1232. [ info ] [ HEADER ] array (
  1233. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1234. 'te' => 'trailers',
  1235. 'sec-fetch-site' => 'same-origin',
  1236. 'sec-fetch-mode' => 'navigate',
  1237. 'sec-fetch-dest' => 'iframe',
  1238. 'upgrade-insecure-requests' => '1',
  1239. 'accept-encoding' => 'gzip, deflate, br',
  1240. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1241. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1242. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1243. 'host' => 'voicechat.lanmaonet.com',
  1244. 'content-type' => '',
  1245. 'content-length' => '',
  1246. )
  1247. [ info ] [ PARAM ] array (
  1248. 'addtabs' => '1',
  1249. )
  1250. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1251. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1252. [ info ] [ SESSION ] INIT array (
  1253. 'id' => '',
  1254. 'var_session_id' => '',
  1255. 'prefix' => 'think',
  1256. 'type' => '',
  1257. 'auto_start' => true,
  1258. )
  1259. [ info ] [ DB ] INIT mysql
  1260. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1261. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000024s ]
  1262. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/dashboard.php
  1263. [ info ] [ RUN ] app\admin\controller\Dashboard->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Dashboard.php ]
  1264. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/dashboard/index.html [ array (
  1265. 0 => 'breadcrumb',
  1266. 1 => 'site',
  1267. 2 => 'config',
  1268. 3 => 'auth',
  1269. 4 => 'admin',
  1270. 5 => 'todayRechargeMoney',
  1271. 6 => 'yesterdayRechargeMoney',
  1272. 7 => 'monthRechargeMoney',
  1273. 8 => 'lastMonthRechargeMoney',
  1274. ) ]
  1275. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000024s ]
  1276. [ info ] [ LOG ] INIT File
  1277. ---------------------------------------------------------------
  1278. [ 2021-09-18T17:40:10+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=dashboard&lang=zh-cn&v=1631958009&v=1631958009
  1279. [运行时间:0.002461s] [吞吐率:406.35req/s] [内存消耗:553.12kb] [文件加载:140]
  1280. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  1281. [ info ] [ CACHE ] INIT File
  1282. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  1283. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  1284. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1285. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1286. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1287. [ info ] [ ROUTE ] array (
  1288. 'type' => 'module',
  1289. 'module' =>
  1290. array (
  1291. 0 => 'admin',
  1292. 1 => 'ajax',
  1293. 2 => 'lang',
  1294. ),
  1295. )
  1296. [ info ] [ HEADER ] array (
  1297. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1298. 'te' => 'trailers',
  1299. 'sec-fetch-site' => 'same-origin',
  1300. 'sec-fetch-mode' => 'no-cors',
  1301. 'sec-fetch-dest' => 'script',
  1302. 'accept-encoding' => 'gzip, deflate, br',
  1303. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1304. 'accept' => '*/*',
  1305. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1306. 'host' => 'voicechat.lanmaonet.com',
  1307. 'content-type' => '',
  1308. 'content-length' => '',
  1309. )
  1310. [ info ] [ PARAM ] array (
  1311. 'callback' => 'define',
  1312. 'controllername' => 'dashboard',
  1313. 'lang' => 'zh-cn',
  1314. 'v' => '1631958009',
  1315. )
  1316. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1317. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  1318. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  1319. [ info ] [ SESSION ] INIT array (
  1320. 'id' => '',
  1321. 'var_session_id' => '',
  1322. 'prefix' => 'think',
  1323. 'type' => '',
  1324. 'auto_start' => true,
  1325. )
  1326. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000030s ]
  1327. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1328. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1329. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/dashboard.php
  1330. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000012s ]
  1331. [ info ] [ LOG ] INIT File
  1332. ---------------------------------------------------------------
  1333. [ 2021-09-18T17:40:10+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1631958009&v=1631958009
  1334. [运行时间:0.002420s] [吞吐率:413.19req/s] [内存消耗:553.99kb] [文件加载:140]
  1335. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1336. [ info ] [ CACHE ] INIT File
  1337. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000154s ]
  1338. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1339. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1340. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1341. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1342. [ info ] [ ROUTE ] array (
  1343. 'type' => 'module',
  1344. 'module' =>
  1345. array (
  1346. 0 => 'admin',
  1347. 1 => 'ajax',
  1348. 2 => 'lang',
  1349. ),
  1350. )
  1351. [ info ] [ HEADER ] array (
  1352. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1353. 'te' => 'trailers',
  1354. 'sec-fetch-site' => 'same-origin',
  1355. 'sec-fetch-mode' => 'no-cors',
  1356. 'sec-fetch-dest' => 'script',
  1357. 'accept-encoding' => 'gzip, deflate, br',
  1358. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1359. 'accept' => '*/*',
  1360. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1361. 'host' => 'voicechat.lanmaonet.com',
  1362. 'content-type' => '',
  1363. 'content-length' => '',
  1364. )
  1365. [ info ] [ PARAM ] array (
  1366. 'callback' => 'define',
  1367. 'controllername' => 'index',
  1368. 'lang' => 'zh-cn',
  1369. 'v' => '1631958009',
  1370. )
  1371. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1372. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1373. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000037s ]
  1374. [ info ] [ SESSION ] INIT array (
  1375. 'id' => '',
  1376. 'var_session_id' => '',
  1377. 'prefix' => 'think',
  1378. 'type' => '',
  1379. 'auto_start' => true,
  1380. )
  1381. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000025s ]
  1382. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1383. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1384. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1385. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000012s ]
  1386. [ info ] [ LOG ] INIT File
  1387. ---------------------------------------------------------------
  1388. [ 2021-09-18T17:40:20+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/levelconfig?addtabs=1
  1389. [运行时间:0.032891s] [吞吐率:30.40req/s] [内存消耗:1,128.58kb] [文件加载:146]
  1390. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  1391. [ info ] [ CACHE ] INIT File
  1392. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000191s ]
  1393. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1394. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1395. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1396. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1397. [ info ] [ ROUTE ] array (
  1398. 'type' => 'module',
  1399. 'module' =>
  1400. array (
  1401. 0 => 'admin',
  1402. 1 => 'user.levelconfig',
  1403. 2 => NULL,
  1404. ),
  1405. )
  1406. [ info ] [ HEADER ] array (
  1407. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1408. 'te' => 'trailers',
  1409. 'sec-fetch-site' => 'same-origin',
  1410. 'sec-fetch-mode' => 'navigate',
  1411. 'sec-fetch-dest' => 'iframe',
  1412. 'upgrade-insecure-requests' => '1',
  1413. 'accept-encoding' => 'gzip, deflate, br',
  1414. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1415. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1416. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1417. 'host' => 'voicechat.lanmaonet.com',
  1418. 'content-type' => '',
  1419. 'content-length' => '',
  1420. )
  1421. [ info ] [ PARAM ] array (
  1422. 'addtabs' => '1',
  1423. )
  1424. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1425. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1426. [ info ] [ SESSION ] INIT array (
  1427. 'id' => '',
  1428. 'var_session_id' => '',
  1429. 'prefix' => 'think',
  1430. 'type' => '',
  1431. 'auto_start' => true,
  1432. )
  1433. [ info ] [ DB ] INIT mysql
  1434. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1435. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000033s ]
  1436. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/levelconfig.php
  1437. [ info ] [ RUN ] app\common\controller\Backend->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/library/traits/Backend.php ]
  1438. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/user/levelconfig/index.html [ array (
  1439. 0 => 'breadcrumb',
  1440. 1 => 'site',
  1441. 2 => 'config',
  1442. 3 => 'auth',
  1443. 4 => 'admin',
  1444. ) ]
  1445. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000028s ]
  1446. [ info ] [ LOG ] INIT File
  1447. ---------------------------------------------------------------
  1448. [ 2021-09-18T17:40:21+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=user.levelconfig&lang=zh-cn&v=1631958020&v=1631958020
  1449. [运行时间:0.002425s] [吞吐率:412.38req/s] [内存消耗:551.61kb] [文件加载:140]
  1450. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1451. [ info ] [ CACHE ] INIT File
  1452. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  1453. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1454. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1455. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1456. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1457. [ info ] [ ROUTE ] array (
  1458. 'type' => 'module',
  1459. 'module' =>
  1460. array (
  1461. 0 => 'admin',
  1462. 1 => 'ajax',
  1463. 2 => 'lang',
  1464. ),
  1465. )
  1466. [ info ] [ HEADER ] array (
  1467. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1468. 'te' => 'trailers',
  1469. 'sec-fetch-site' => 'same-origin',
  1470. 'sec-fetch-mode' => 'no-cors',
  1471. 'sec-fetch-dest' => 'script',
  1472. 'accept-encoding' => 'gzip, deflate, br',
  1473. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1474. 'accept' => '*/*',
  1475. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1476. 'host' => 'voicechat.lanmaonet.com',
  1477. 'content-type' => '',
  1478. 'content-length' => '',
  1479. )
  1480. [ info ] [ PARAM ] array (
  1481. 'callback' => 'define',
  1482. 'controllername' => 'user.levelconfig',
  1483. 'lang' => 'zh-cn',
  1484. 'v' => '1631958020',
  1485. )
  1486. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1487. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  1488. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  1489. [ info ] [ SESSION ] INIT array (
  1490. 'id' => '',
  1491. 'var_session_id' => '',
  1492. 'prefix' => 'think',
  1493. 'type' => '',
  1494. 'auto_start' => true,
  1495. )
  1496. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000027s ]
  1497. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1498. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1499. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/levelconfig.php
  1500. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000012s ]
  1501. [ info ] [ LOG ] INIT File
  1502. ---------------------------------------------------------------
  1503. [ 2021-09-18T17:40:21+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/levelconfig/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1631958015427
  1504. [运行时间:0.067850s] [吞吐率:14.74req/s] [内存消耗:1,143.38kb] [文件加载:149]
  1505. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1506. [ info ] [ CACHE ] INIT File
  1507. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000141s ]
  1508. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  1509. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1510. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1511. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  1512. [ info ] [ ROUTE ] array (
  1513. 'type' => 'module',
  1514. 'module' =>
  1515. array (
  1516. 0 => 'admin',
  1517. 1 => 'user.levelconfig',
  1518. 2 => 'index',
  1519. ),
  1520. )
  1521. [ info ] [ HEADER ] array (
  1522. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1523. 'te' => 'trailers',
  1524. 'sec-fetch-site' => 'same-origin',
  1525. 'sec-fetch-mode' => 'cors',
  1526. 'sec-fetch-dest' => 'empty',
  1527. 'x-requested-with' => 'XMLHttpRequest',
  1528. 'content-type' => 'application/json',
  1529. 'accept-encoding' => 'gzip, deflate, br',
  1530. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1531. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1532. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1533. 'host' => 'voicechat.lanmaonet.com',
  1534. 'content-length' => '',
  1535. )
  1536. [ info ] [ PARAM ] array (
  1537. 'addtabs' => '1',
  1538. 'sort' => 'id',
  1539. 'order' => 'desc',
  1540. 'offset' => '0',
  1541. 'limit' => '10',
  1542. 'filter' => '{}',
  1543. 'op' => '{}',
  1544. '_' => '1631958015427',
  1545. )
  1546. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1547. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1548. [ info ] [ SESSION ] INIT array (
  1549. 'id' => '',
  1550. 'var_session_id' => '',
  1551. 'prefix' => 'think',
  1552. 'type' => '',
  1553. 'auto_start' => true,
  1554. )
  1555. [ info ] [ DB ] INIT mysql
  1556. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  1557. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000025s ]
  1558. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/levelconfig.php
  1559. [ info ] [ RUN ] app\common\controller\Backend->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/library/traits/Backend.php ]
  1560. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000024s ]
  1561. [ info ] [ LOG ] INIT File
  1562. ---------------------------------------------------------------
  1563. [ 2021-09-18T17:41:09+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/rebatewithdraw?addtabs=1
  1564. [运行时间:0.085961s] [吞吐率:11.63req/s] [内存消耗:1,129.29kb] [文件加载:146]
  1565. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1566. [ info ] [ CACHE ] INIT File
  1567. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000218s ]
  1568. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  1569. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  1570. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1571. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  1572. [ info ] [ ROUTE ] array (
  1573. 'type' => 'module',
  1574. 'module' =>
  1575. array (
  1576. 0 => 'admin',
  1577. 1 => 'user.rebatewithdraw',
  1578. 2 => NULL,
  1579. ),
  1580. )
  1581. [ info ] [ HEADER ] array (
  1582. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1583. 'te' => 'trailers',
  1584. 'sec-fetch-site' => 'same-origin',
  1585. 'sec-fetch-mode' => 'navigate',
  1586. 'sec-fetch-dest' => 'iframe',
  1587. 'upgrade-insecure-requests' => '1',
  1588. 'accept-encoding' => 'gzip, deflate, br',
  1589. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1590. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1591. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1592. 'host' => 'voicechat.lanmaonet.com',
  1593. 'content-type' => '',
  1594. 'content-length' => '',
  1595. )
  1596. [ info ] [ PARAM ] array (
  1597. 'addtabs' => '1',
  1598. )
  1599. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1600. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  1601. [ info ] [ SESSION ] INIT array (
  1602. 'id' => '',
  1603. 'var_session_id' => '',
  1604. 'prefix' => 'think',
  1605. 'type' => '',
  1606. 'auto_start' => true,
  1607. )
  1608. [ info ] [ DB ] INIT mysql
  1609. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1610. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000031s ]
  1611. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/rebatewithdraw.php
  1612. [ info ] [ RUN ] app\admin\controller\user\Rebatewithdraw->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/Rebatewithdraw.php ]
  1613. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/user/rebatewithdraw/index.html [ array (
  1614. 0 => 'breadcrumb',
  1615. 1 => 'site',
  1616. 2 => 'config',
  1617. 3 => 'auth',
  1618. 4 => 'admin',
  1619. 5 => 'statusList',
  1620. ) ]
  1621. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000048s ]
  1622. [ info ] [ LOG ] INIT File
  1623. ---------------------------------------------------------------
  1624. [ 2021-09-18T17:41:09+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=user.rebatewithdraw&lang=zh-cn&v=1631958069&v=1631958069
  1625. [运行时间:0.002550s] [吞吐率:392.17req/s] [内存消耗:551.80kb] [文件加载:140]
  1626. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1627. [ info ] [ CACHE ] INIT File
  1628. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  1629. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  1630. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1631. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1632. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1633. [ info ] [ ROUTE ] array (
  1634. 'type' => 'module',
  1635. 'module' =>
  1636. array (
  1637. 0 => 'admin',
  1638. 1 => 'ajax',
  1639. 2 => 'lang',
  1640. ),
  1641. )
  1642. [ info ] [ HEADER ] array (
  1643. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1644. 'te' => 'trailers',
  1645. 'sec-fetch-site' => 'same-origin',
  1646. 'sec-fetch-mode' => 'no-cors',
  1647. 'sec-fetch-dest' => 'script',
  1648. 'accept-encoding' => 'gzip, deflate, br',
  1649. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1650. 'accept' => '*/*',
  1651. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1652. 'host' => 'voicechat.lanmaonet.com',
  1653. 'content-type' => '',
  1654. 'content-length' => '',
  1655. )
  1656. [ info ] [ PARAM ] array (
  1657. 'callback' => 'define',
  1658. 'controllername' => 'user.rebatewithdraw',
  1659. 'lang' => 'zh-cn',
  1660. 'v' => '1631958069',
  1661. )
  1662. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1663. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  1664. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  1665. [ info ] [ SESSION ] INIT array (
  1666. 'id' => '',
  1667. 'var_session_id' => '',
  1668. 'prefix' => 'think',
  1669. 'type' => '',
  1670. 'auto_start' => true,
  1671. )
  1672. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000042s ]
  1673. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1674. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1675. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/rebatewithdraw.php
  1676. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000015s ]
  1677. [ info ] [ LOG ] INIT File
  1678. ---------------------------------------------------------------
  1679. [ 2021-09-18T17:41:10+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/rebatewithdraw/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%22status%22%3A%221%22%7D&op=%7B%22status%22%3A%22%3D%22%7D&_=1631958063898
  1680. [运行时间:0.026528s] [吞吐率:37.70req/s] [内存消耗:1,247.01kb] [文件加载:153]
  1681. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1682. [ info ] [ CACHE ] INIT File
  1683. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  1684. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  1685. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1686. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1687. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1688. [ info ] [ ROUTE ] array (
  1689. 'type' => 'module',
  1690. 'module' =>
  1691. array (
  1692. 0 => 'admin',
  1693. 1 => 'user.rebatewithdraw',
  1694. 2 => 'index',
  1695. ),
  1696. )
  1697. [ info ] [ HEADER ] array (
  1698. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1699. 'te' => 'trailers',
  1700. 'sec-fetch-site' => 'same-origin',
  1701. 'sec-fetch-mode' => 'cors',
  1702. 'sec-fetch-dest' => 'empty',
  1703. 'x-requested-with' => 'XMLHttpRequest',
  1704. 'content-type' => 'application/json',
  1705. 'accept-encoding' => 'gzip, deflate, br',
  1706. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1707. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1708. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1709. 'host' => 'voicechat.lanmaonet.com',
  1710. 'content-length' => '',
  1711. )
  1712. [ info ] [ PARAM ] array (
  1713. 'addtabs' => '1',
  1714. 'sort' => 'id',
  1715. 'order' => 'desc',
  1716. 'offset' => '0',
  1717. 'limit' => '10',
  1718. 'filter' => '{"status":"1"}',
  1719. 'op' => '{"status":"="}',
  1720. '_' => '1631958063898',
  1721. )
  1722. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1723. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1724. [ info ] [ SESSION ] INIT array (
  1725. 'id' => '',
  1726. 'var_session_id' => '',
  1727. 'prefix' => 'think',
  1728. 'type' => '',
  1729. 'auto_start' => true,
  1730. )
  1731. [ info ] [ DB ] INIT mysql
  1732. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1733. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000025s ]
  1734. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/rebatewithdraw.php
  1735. [ info ] [ RUN ] app\admin\controller\user\Rebatewithdraw->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/Rebatewithdraw.php ]
  1736. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000021s ]
  1737. [ info ] [ LOG ] INIT File
  1738. ---------------------------------------------------------------
  1739. [ 2021-09-18T17:41:10+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/rebatewithdraw/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%22status%22%3A%221%22%7D&op=%7B%22status%22%3A%22%3D%22%7D&_=1631958063899
  1740. [运行时间:0.022480s] [吞吐率:44.48req/s] [内存消耗:1,247.01kb] [文件加载:153]
  1741. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1742. [ info ] [ CACHE ] INIT File
  1743. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000126s ]
  1744. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  1745. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  1746. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1747. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1748. [ info ] [ ROUTE ] array (
  1749. 'type' => 'module',
  1750. 'module' =>
  1751. array (
  1752. 0 => 'admin',
  1753. 1 => 'user.rebatewithdraw',
  1754. 2 => 'index',
  1755. ),
  1756. )
  1757. [ info ] [ HEADER ] array (
  1758. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1759. 'te' => 'trailers',
  1760. 'sec-fetch-site' => 'same-origin',
  1761. 'sec-fetch-mode' => 'cors',
  1762. 'sec-fetch-dest' => 'empty',
  1763. 'x-requested-with' => 'XMLHttpRequest',
  1764. 'content-type' => 'application/json',
  1765. 'accept-encoding' => 'gzip, deflate, br',
  1766. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1767. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1768. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1769. 'host' => 'voicechat.lanmaonet.com',
  1770. 'content-length' => '',
  1771. )
  1772. [ info ] [ PARAM ] array (
  1773. 'addtabs' => '1',
  1774. 'sort' => 'id',
  1775. 'order' => 'desc',
  1776. 'offset' => '0',
  1777. 'limit' => '10',
  1778. 'filter' => '{"status":"1"}',
  1779. 'op' => '{"status":"="}',
  1780. '_' => '1631958063899',
  1781. )
  1782. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1783. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1784. [ info ] [ SESSION ] INIT array (
  1785. 'id' => '',
  1786. 'var_session_id' => '',
  1787. 'prefix' => 'think',
  1788. 'type' => '',
  1789. 'auto_start' => true,
  1790. )
  1791. [ info ] [ DB ] INIT mysql
  1792. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1793. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000030s ]
  1794. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/rebatewithdraw.php
  1795. [ info ] [ RUN ] app\admin\controller\user\Rebatewithdraw->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/Rebatewithdraw.php ]
  1796. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000017s ]
  1797. [ info ] [ LOG ] INIT File
  1798. ---------------------------------------------------------------
  1799. [ 2021-09-18T17:47:05+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/levelexplain?addtabs=1
  1800. [运行时间:0.059755s] [吞吐率:16.74req/s] [内存消耗:1,157.06kb] [文件加载:148]
  1801. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1802. [ info ] [ CACHE ] INIT File
  1803. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000206s ]
  1804. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1805. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1806. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1807. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  1808. [ info ] [ ROUTE ] array (
  1809. 'type' => 'module',
  1810. 'module' =>
  1811. array (
  1812. 0 => 'admin',
  1813. 1 => 'user.levelexplain',
  1814. 2 => NULL,
  1815. ),
  1816. )
  1817. [ info ] [ HEADER ] array (
  1818. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1819. 'te' => 'trailers',
  1820. 'sec-fetch-site' => 'same-origin',
  1821. 'sec-fetch-mode' => 'navigate',
  1822. 'sec-fetch-dest' => 'iframe',
  1823. 'upgrade-insecure-requests' => '1',
  1824. 'accept-encoding' => 'gzip, deflate, br',
  1825. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1826. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1827. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1828. 'host' => 'voicechat.lanmaonet.com',
  1829. 'content-type' => '',
  1830. 'content-length' => '',
  1831. )
  1832. [ info ] [ PARAM ] array (
  1833. 'addtabs' => '1',
  1834. )
  1835. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1836. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  1837. [ info ] [ SESSION ] INIT array (
  1838. 'id' => '',
  1839. 'var_session_id' => '',
  1840. 'prefix' => 'think',
  1841. 'type' => '',
  1842. 'auto_start' => true,
  1843. )
  1844. [ info ] [ DB ] INIT mysql
  1845. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  1846. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000047s ]
  1847. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/levelexplain.php
  1848. [ info ] [ RUN ] app\common\controller\Backend->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/library/traits/Backend.php ]
  1849. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/user/levelexplain/index.html [ array (
  1850. 0 => 'breadcrumb',
  1851. 1 => 'site',
  1852. 2 => 'config',
  1853. 3 => 'auth',
  1854. 4 => 'admin',
  1855. ) ]
  1856. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000030s ]
  1857. [ info ] [ LOG ] INIT File
  1858. ---------------------------------------------------------------
  1859. [ 2021-09-18T17:47:05+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=user.levelexplain&lang=zh-cn&v=1631958425&v=1631958425
  1860. [运行时间:0.002590s] [吞吐率:386.11req/s] [内存消耗:552.14kb] [文件加载:140]
  1861. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1862. [ info ] [ CACHE ] INIT File
  1863. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000168s ]
  1864. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1865. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1866. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1867. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1868. [ info ] [ ROUTE ] array (
  1869. 'type' => 'module',
  1870. 'module' =>
  1871. array (
  1872. 0 => 'admin',
  1873. 1 => 'ajax',
  1874. 2 => 'lang',
  1875. ),
  1876. )
  1877. [ info ] [ HEADER ] array (
  1878. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1879. 'te' => 'trailers',
  1880. 'sec-fetch-site' => 'same-origin',
  1881. 'sec-fetch-mode' => 'no-cors',
  1882. 'sec-fetch-dest' => 'script',
  1883. 'accept-encoding' => 'gzip, deflate, br',
  1884. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1885. 'accept' => '*/*',
  1886. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1887. 'host' => 'voicechat.lanmaonet.com',
  1888. 'content-type' => '',
  1889. 'content-length' => '',
  1890. )
  1891. [ info ] [ PARAM ] array (
  1892. 'callback' => 'define',
  1893. 'controllername' => 'user.levelexplain',
  1894. 'lang' => 'zh-cn',
  1895. 'v' => '1631958425',
  1896. )
  1897. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1898. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000081s ]
  1899. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  1900. [ info ] [ SESSION ] INIT array (
  1901. 'id' => '',
  1902. 'var_session_id' => '',
  1903. 'prefix' => 'think',
  1904. 'type' => '',
  1905. 'auto_start' => true,
  1906. )
  1907. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000037s ]
  1908. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1909. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1910. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/levelexplain.php
  1911. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000017s ]
  1912. [ info ] [ LOG ] INIT File
  1913. ---------------------------------------------------------------
  1914. [ 2021-09-18T17:47:06+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/levelexplain/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1631958419919
  1915. [运行时间:0.031595s] [吞吐率:31.65req/s] [内存消耗:1,144.72kb] [文件加载:149]
  1916. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1917. [ info ] [ CACHE ] INIT File
  1918. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000181s ]
  1919. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1920. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1921. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1922. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1923. [ info ] [ ROUTE ] array (
  1924. 'type' => 'module',
  1925. 'module' =>
  1926. array (
  1927. 0 => 'admin',
  1928. 1 => 'user.levelexplain',
  1929. 2 => 'index',
  1930. ),
  1931. )
  1932. [ info ] [ HEADER ] array (
  1933. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1934. 'te' => 'trailers',
  1935. 'sec-fetch-site' => 'same-origin',
  1936. 'sec-fetch-mode' => 'cors',
  1937. 'sec-fetch-dest' => 'empty',
  1938. 'x-requested-with' => 'XMLHttpRequest',
  1939. 'content-type' => 'application/json',
  1940. 'accept-encoding' => 'gzip, deflate, br',
  1941. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1942. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1943. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  1944. 'host' => 'voicechat.lanmaonet.com',
  1945. 'content-length' => '',
  1946. )
  1947. [ info ] [ PARAM ] array (
  1948. 'addtabs' => '1',
  1949. 'sort' => 'id',
  1950. 'order' => 'desc',
  1951. 'offset' => '0',
  1952. 'limit' => '10',
  1953. 'filter' => '{}',
  1954. 'op' => '{}',
  1955. '_' => '1631958419919',
  1956. )
  1957. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1958. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1959. [ info ] [ SESSION ] INIT array (
  1960. 'id' => '',
  1961. 'var_session_id' => '',
  1962. 'prefix' => 'think',
  1963. 'type' => '',
  1964. 'auto_start' => true,
  1965. )
  1966. [ info ] [ DB ] INIT mysql
  1967. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1968. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000026s ]
  1969. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/levelexplain.php
  1970. [ info ] [ RUN ] app\common\controller\Backend->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/library/traits/Backend.php ]
  1971. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000019s ]
  1972. [ info ] [ LOG ] INIT File
  1973. ---------------------------------------------------------------
  1974. [ 2021-09-18T17:49:00+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/conf/rechar?addtabs=1
  1975. [运行时间:0.067476s] [吞吐率:14.82req/s] [内存消耗:1,157.08kb] [文件加载:148]
  1976. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1977. [ info ] [ CACHE ] INIT File
  1978. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000195s ]
  1979. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1980. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1981. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1982. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1983. [ info ] [ ROUTE ] array (
  1984. 'type' => 'module',
  1985. 'module' =>
  1986. array (
  1987. 0 => 'admin',
  1988. 1 => 'conf.rechar',
  1989. 2 => NULL,
  1990. ),
  1991. )
  1992. [ info ] [ HEADER ] array (
  1993. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  1994. 'te' => 'trailers',
  1995. 'sec-fetch-site' => 'same-origin',
  1996. 'sec-fetch-mode' => 'navigate',
  1997. 'sec-fetch-dest' => 'iframe',
  1998. 'upgrade-insecure-requests' => '1',
  1999. 'accept-encoding' => 'gzip, deflate, br',
  2000. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2001. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  2002. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2003. 'host' => 'voicechat.lanmaonet.com',
  2004. 'content-type' => '',
  2005. 'content-length' => '',
  2006. )
  2007. [ info ] [ PARAM ] array (
  2008. 'addtabs' => '1',
  2009. )
  2010. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2011. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000073s ]
  2012. [ info ] [ SESSION ] INIT array (
  2013. 'id' => '',
  2014. 'var_session_id' => '',
  2015. 'prefix' => 'think',
  2016. 'type' => '',
  2017. 'auto_start' => true,
  2018. )
  2019. [ info ] [ DB ] INIT mysql
  2020. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  2021. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000034s ]
  2022. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/conf/rechar.php
  2023. [ info ] [ RUN ] app\common\controller\Backend->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/library/traits/Backend.php ]
  2024. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/conf/rechar/index.html [ array (
  2025. 0 => 'breadcrumb',
  2026. 1 => 'site',
  2027. 2 => 'config',
  2028. 3 => 'auth',
  2029. 4 => 'admin',
  2030. ) ]
  2031. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000030s ]
  2032. [ info ] [ LOG ] INIT File
  2033. ---------------------------------------------------------------
  2034. [ 2021-09-18T17:49:01+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=conf.rechar&lang=zh-cn&v=1631958540&v=1631958540
  2035. [运行时间:0.002588s] [吞吐率:386.39req/s] [内存消耗:552.29kb] [文件加载:140]
  2036. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2037. [ info ] [ CACHE ] INIT File
  2038. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000182s ]
  2039. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2040. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2041. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2042. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2043. [ info ] [ ROUTE ] array (
  2044. 'type' => 'module',
  2045. 'module' =>
  2046. array (
  2047. 0 => 'admin',
  2048. 1 => 'ajax',
  2049. 2 => 'lang',
  2050. ),
  2051. )
  2052. [ info ] [ HEADER ] array (
  2053. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  2054. 'te' => 'trailers',
  2055. 'sec-fetch-site' => 'same-origin',
  2056. 'sec-fetch-mode' => 'no-cors',
  2057. 'sec-fetch-dest' => 'script',
  2058. 'accept-encoding' => 'gzip, deflate, br',
  2059. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2060. 'accept' => '*/*',
  2061. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2062. 'host' => 'voicechat.lanmaonet.com',
  2063. 'content-type' => '',
  2064. 'content-length' => '',
  2065. )
  2066. [ info ] [ PARAM ] array (
  2067. 'callback' => 'define',
  2068. 'controllername' => 'conf.rechar',
  2069. 'lang' => 'zh-cn',
  2070. 'v' => '1631958540',
  2071. )
  2072. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2073. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000084s ]
  2074. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  2075. [ info ] [ SESSION ] INIT array (
  2076. 'id' => '',
  2077. 'var_session_id' => '',
  2078. 'prefix' => 'think',
  2079. 'type' => '',
  2080. 'auto_start' => true,
  2081. )
  2082. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000026s ]
  2083. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  2084. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  2085. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/conf/rechar.php
  2086. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000017s ]
  2087. [ info ] [ LOG ] INIT File
  2088. ---------------------------------------------------------------
  2089. [ 2021-09-18T17:49:01+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/conf/rechar/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1631958535726
  2090. [运行时间:0.009388s] [吞吐率:106.52req/s] [内存消耗:1,146.83kb] [文件加载:149]
  2091. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2092. [ info ] [ CACHE ] INIT File
  2093. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  2094. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  2095. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  2096. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2097. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  2098. [ info ] [ ROUTE ] array (
  2099. 'type' => 'module',
  2100. 'module' =>
  2101. array (
  2102. 0 => 'admin',
  2103. 1 => 'conf.rechar',
  2104. 2 => 'index',
  2105. ),
  2106. )
  2107. [ info ] [ HEADER ] array (
  2108. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  2109. 'te' => 'trailers',
  2110. 'sec-fetch-site' => 'same-origin',
  2111. 'sec-fetch-mode' => 'cors',
  2112. 'sec-fetch-dest' => 'empty',
  2113. 'x-requested-with' => 'XMLHttpRequest',
  2114. 'content-type' => 'application/json',
  2115. 'accept-encoding' => 'gzip, deflate, br',
  2116. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2117. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  2118. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2119. 'host' => 'voicechat.lanmaonet.com',
  2120. 'content-length' => '',
  2121. )
  2122. [ info ] [ PARAM ] array (
  2123. 'addtabs' => '1',
  2124. 'sort' => 'id',
  2125. 'order' => 'desc',
  2126. 'offset' => '0',
  2127. 'limit' => '10',
  2128. 'filter' => '{}',
  2129. 'op' => '{}',
  2130. '_' => '1631958535726',
  2131. )
  2132. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2133. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000075s ]
  2134. [ info ] [ SESSION ] INIT array (
  2135. 'id' => '',
  2136. 'var_session_id' => '',
  2137. 'prefix' => 'think',
  2138. 'type' => '',
  2139. 'auto_start' => true,
  2140. )
  2141. [ info ] [ DB ] INIT mysql
  2142. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  2143. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000026s ]
  2144. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/conf/rechar.php
  2145. [ info ] [ RUN ] app\common\controller\Backend->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/library/traits/Backend.php ]
  2146. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000019s ]
  2147. [ info ] [ LOG ] INIT File
  2148. ---------------------------------------------------------------
  2149. [ 2021-09-18T17:49:04+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/conf/rebate?addtabs=1
  2150. [运行时间:0.025399s] [吞吐率:39.37req/s] [内存消耗:1,155.98kb] [文件加载:146]
  2151. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2152. [ info ] [ CACHE ] INIT File
  2153. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000199s ]
  2154. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  2155. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  2156. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2157. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2158. [ info ] [ ROUTE ] array (
  2159. 'type' => 'module',
  2160. 'module' =>
  2161. array (
  2162. 0 => 'admin',
  2163. 1 => 'conf.rebate',
  2164. 2 => NULL,
  2165. ),
  2166. )
  2167. [ info ] [ HEADER ] array (
  2168. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  2169. 'te' => 'trailers',
  2170. 'sec-fetch-site' => 'same-origin',
  2171. 'sec-fetch-mode' => 'navigate',
  2172. 'sec-fetch-dest' => 'iframe',
  2173. 'upgrade-insecure-requests' => '1',
  2174. 'accept-encoding' => 'gzip, deflate, br',
  2175. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2176. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  2177. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2178. 'host' => 'voicechat.lanmaonet.com',
  2179. 'content-type' => '',
  2180. 'content-length' => '',
  2181. )
  2182. [ info ] [ PARAM ] array (
  2183. 'addtabs' => '1',
  2184. )
  2185. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2186. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  2187. [ info ] [ SESSION ] INIT array (
  2188. 'id' => '',
  2189. 'var_session_id' => '',
  2190. 'prefix' => 'think',
  2191. 'type' => '',
  2192. 'auto_start' => true,
  2193. )
  2194. [ info ] [ DB ] INIT mysql
  2195. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  2196. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000032s ]
  2197. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/conf/rebate.php
  2198. [ info ] [ RUN ] app\common\controller\Backend->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/library/traits/Backend.php ]
  2199. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/conf/rebate/index.html [ array (
  2200. 0 => 'breadcrumb',
  2201. 1 => 'site',
  2202. 2 => 'config',
  2203. 3 => 'auth',
  2204. 4 => 'admin',
  2205. ) ]
  2206. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000031s ]
  2207. [ info ] [ LOG ] INIT File
  2208. ---------------------------------------------------------------
  2209. [ 2021-09-18T17:49:05+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=conf.rebate&lang=zh-cn&v=1631958544&v=1631958544
  2210. [运行时间:0.002530s] [吞吐率:395.28req/s] [内存消耗:552.11kb] [文件加载:140]
  2211. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2212. [ info ] [ CACHE ] INIT File
  2213. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000170s ]
  2214. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2215. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2216. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2217. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  2218. [ info ] [ ROUTE ] array (
  2219. 'type' => 'module',
  2220. 'module' =>
  2221. array (
  2222. 0 => 'admin',
  2223. 1 => 'ajax',
  2224. 2 => 'lang',
  2225. ),
  2226. )
  2227. [ info ] [ HEADER ] array (
  2228. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  2229. 'te' => 'trailers',
  2230. 'sec-fetch-site' => 'same-origin',
  2231. 'sec-fetch-mode' => 'no-cors',
  2232. 'sec-fetch-dest' => 'script',
  2233. 'accept-encoding' => 'gzip, deflate, br',
  2234. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2235. 'accept' => '*/*',
  2236. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2237. 'host' => 'voicechat.lanmaonet.com',
  2238. 'content-type' => '',
  2239. 'content-length' => '',
  2240. )
  2241. [ info ] [ PARAM ] array (
  2242. 'callback' => 'define',
  2243. 'controllername' => 'conf.rebate',
  2244. 'lang' => 'zh-cn',
  2245. 'v' => '1631958544',
  2246. )
  2247. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2248. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000087s ]
  2249. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  2250. [ info ] [ SESSION ] INIT array (
  2251. 'id' => '',
  2252. 'var_session_id' => '',
  2253. 'prefix' => 'think',
  2254. 'type' => '',
  2255. 'auto_start' => true,
  2256. )
  2257. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000028s ]
  2258. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  2259. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  2260. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/conf/rebate.php
  2261. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000018s ]
  2262. [ info ] [ LOG ] INIT File
  2263. ---------------------------------------------------------------
  2264. [ 2021-09-18T17:49:05+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/conf/rebate/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1631958539438
  2265. [运行时间:0.019839s] [吞吐率:50.41req/s] [内存消耗:1,168.05kb] [文件加载:149]
  2266. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2267. [ info ] [ CACHE ] INIT File
  2268. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  2269. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2270. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2271. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2272. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2273. [ info ] [ ROUTE ] array (
  2274. 'type' => 'module',
  2275. 'module' =>
  2276. array (
  2277. 0 => 'admin',
  2278. 1 => 'conf.rebate',
  2279. 2 => 'index',
  2280. ),
  2281. )
  2282. [ info ] [ HEADER ] array (
  2283. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  2284. 'te' => 'trailers',
  2285. 'sec-fetch-site' => 'same-origin',
  2286. 'sec-fetch-mode' => 'cors',
  2287. 'sec-fetch-dest' => 'empty',
  2288. 'x-requested-with' => 'XMLHttpRequest',
  2289. 'content-type' => 'application/json',
  2290. 'accept-encoding' => 'gzip, deflate, br',
  2291. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2292. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  2293. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2294. 'host' => 'voicechat.lanmaonet.com',
  2295. 'content-length' => '',
  2296. )
  2297. [ info ] [ PARAM ] array (
  2298. 'addtabs' => '1',
  2299. 'sort' => 'id',
  2300. 'order' => 'desc',
  2301. 'offset' => '0',
  2302. 'limit' => '10',
  2303. 'filter' => '{}',
  2304. 'op' => '{}',
  2305. '_' => '1631958539438',
  2306. )
  2307. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2308. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  2309. [ info ] [ SESSION ] INIT array (
  2310. 'id' => '',
  2311. 'var_session_id' => '',
  2312. 'prefix' => 'think',
  2313. 'type' => '',
  2314. 'auto_start' => true,
  2315. )
  2316. [ info ] [ DB ] INIT mysql
  2317. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  2318. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000026s ]
  2319. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/conf/rebate.php
  2320. [ info ] [ RUN ] app\common\controller\Backend->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/library/traits/Backend.php ]
  2321. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000018s ]
  2322. [ info ] [ LOG ] INIT File
  2323. ---------------------------------------------------------------
  2324. [ 2021-09-18T17:49:14+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/platprofit/withdrawal?addtabs=1
  2325. [运行时间:0.057883s] [吞吐率:17.28req/s] [内存消耗:1,140.50kb] [文件加载:146]
  2326. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2327. [ info ] [ CACHE ] INIT File
  2328. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000184s ]
  2329. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  2330. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2331. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2332. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  2333. [ info ] [ ROUTE ] array (
  2334. 'type' => 'module',
  2335. 'module' =>
  2336. array (
  2337. 0 => 'admin',
  2338. 1 => 'platprofit.withdrawal',
  2339. 2 => NULL,
  2340. ),
  2341. )
  2342. [ info ] [ HEADER ] array (
  2343. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  2344. 'te' => 'trailers',
  2345. 'sec-fetch-site' => 'same-origin',
  2346. 'sec-fetch-mode' => 'navigate',
  2347. 'sec-fetch-dest' => 'iframe',
  2348. 'upgrade-insecure-requests' => '1',
  2349. 'accept-encoding' => 'gzip, deflate, br',
  2350. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2351. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  2352. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2353. 'host' => 'voicechat.lanmaonet.com',
  2354. 'content-type' => '',
  2355. 'content-length' => '',
  2356. )
  2357. [ info ] [ PARAM ] array (
  2358. 'addtabs' => '1',
  2359. )
  2360. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2361. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  2362. [ info ] [ SESSION ] INIT array (
  2363. 'id' => '',
  2364. 'var_session_id' => '',
  2365. 'prefix' => 'think',
  2366. 'type' => '',
  2367. 'auto_start' => true,
  2368. )
  2369. [ info ] [ DB ] INIT mysql
  2370. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000069s ]
  2371. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000033s ]
  2372. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/platprofit/withdrawal.php
  2373. [ info ] [ RUN ] app\admin\controller\platprofit\Withdrawal->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/platprofit/Withdrawal.php ]
  2374. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/platprofit/withdrawal/index.html [ array (
  2375. 0 => 'breadcrumb',
  2376. 1 => 'site',
  2377. 2 => 'config',
  2378. 3 => 'auth',
  2379. 4 => 'admin',
  2380. ) ]
  2381. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000033s ]
  2382. [ info ] [ LOG ] INIT File
  2383. ---------------------------------------------------------------
  2384. [ 2021-09-18T17:49:14+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=platprofit.withdrawal&lang=zh-cn&v=1631958553&v=1631958553
  2385. [运行时间:0.002519s] [吞吐率:396.96req/s] [内存消耗:552.27kb] [文件加载:140]
  2386. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2387. [ info ] [ CACHE ] INIT File
  2388. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  2389. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  2390. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2391. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2392. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  2393. [ info ] [ ROUTE ] array (
  2394. 'type' => 'module',
  2395. 'module' =>
  2396. array (
  2397. 0 => 'admin',
  2398. 1 => 'ajax',
  2399. 2 => 'lang',
  2400. ),
  2401. )
  2402. [ info ] [ HEADER ] array (
  2403. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  2404. 'te' => 'trailers',
  2405. 'sec-fetch-site' => 'same-origin',
  2406. 'sec-fetch-mode' => 'no-cors',
  2407. 'sec-fetch-dest' => 'script',
  2408. 'accept-encoding' => 'gzip, deflate, br',
  2409. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2410. 'accept' => '*/*',
  2411. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2412. 'host' => 'voicechat.lanmaonet.com',
  2413. 'content-type' => '',
  2414. 'content-length' => '',
  2415. )
  2416. [ info ] [ PARAM ] array (
  2417. 'callback' => 'define',
  2418. 'controllername' => 'platprofit.withdrawal',
  2419. 'lang' => 'zh-cn',
  2420. 'v' => '1631958553',
  2421. )
  2422. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2423. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  2424. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000042s ]
  2425. [ info ] [ SESSION ] INIT array (
  2426. 'id' => '',
  2427. 'var_session_id' => '',
  2428. 'prefix' => 'think',
  2429. 'type' => '',
  2430. 'auto_start' => true,
  2431. )
  2432. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000026s ]
  2433. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  2434. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  2435. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/platprofit/withdrawal.php
  2436. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000025s ]
  2437. [ info ] [ LOG ] INIT File
  2438. ---------------------------------------------------------------
  2439. [ 2021-09-18T17:49:15+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/platprofit/withdrawal/index?addtabs=1&sort=id&order=desc&filter=%7B%7D&op=%7B%7D&_=1631958548847
  2440. [运行时间:0.017469s] [吞吐率:57.24req/s] [内存消耗:1,142.30kb] [文件加载:146]
  2441. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2442. [ info ] [ CACHE ] INIT File
  2443. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  2444. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  2445. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  2446. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2447. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2448. [ info ] [ ROUTE ] array (
  2449. 'type' => 'module',
  2450. 'module' =>
  2451. array (
  2452. 0 => 'admin',
  2453. 1 => 'platprofit.withdrawal',
  2454. 2 => 'index',
  2455. ),
  2456. )
  2457. [ info ] [ HEADER ] array (
  2458. 'cookie' => 'PHPSESSID=re82rcs9bm5ljhpimo2f0o7r9g; think_var=zh-cn',
  2459. 'te' => 'trailers',
  2460. 'sec-fetch-site' => 'same-origin',
  2461. 'sec-fetch-mode' => 'cors',
  2462. 'sec-fetch-dest' => 'empty',
  2463. 'x-requested-with' => 'XMLHttpRequest',
  2464. 'content-type' => 'application/json',
  2465. 'accept-encoding' => 'gzip, deflate, br',
  2466. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  2467. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  2468. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0',
  2469. 'host' => 'voicechat.lanmaonet.com',
  2470. 'content-length' => '',
  2471. )
  2472. [ info ] [ PARAM ] array (
  2473. 'addtabs' => '1',
  2474. 'sort' => 'id',
  2475. 'order' => 'desc',
  2476. 'filter' => '{}',
  2477. 'op' => '{}',
  2478. '_' => '1631958548847',
  2479. )
  2480. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  2481. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  2482. [ info ] [ SESSION ] INIT array (
  2483. 'id' => '',
  2484. 'var_session_id' => '',
  2485. 'prefix' => 'think',
  2486. 'type' => '',
  2487. 'auto_start' => true,
  2488. )
  2489. [ info ] [ DB ] INIT mysql
  2490. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  2491. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000027s ]
  2492. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/platprofit/withdrawal.php
  2493. [ info ] [ RUN ] app\admin\controller\platprofit\Withdrawal->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/platprofit/Withdrawal.php ]
  2494. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000021s ]
  2495. [ info ] [ LOG ] INIT File
  2496. ---------------------------------------------------------------
  2497. [ 2021-09-18T17:58:17+08:00 ] 223.68.125.169 GET voicechat.lanmaonet.com/apple-app-site-association
  2498. [运行时间:0.003605s] [吞吐率:277.38req/s] [内存消耗:340.17kb] [文件加载:123]
  2499. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2500. [ info ] [ CACHE ] INIT File
  2501. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000190s ]
  2502. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2503. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2504. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2505. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000059s ]
  2506. [ info ] [ ROUTE ] array (
  2507. 'type' => 'module',
  2508. 'module' =>
  2509. array (
  2510. 0 => 'apple-app-site-association',
  2511. 1 => NULL,
  2512. 2 => NULL,
  2513. ),
  2514. )
  2515. [ info ] [ HEADER ] array (
  2516. 'user-agent' => 'swcd (unknown version) CFNetwork/974.2.1 Darwin/18.0.0',
  2517. 'accept-encoding' => 'br, gzip, deflate',
  2518. 'connection' => 'keep-alive',
  2519. 'accept-language' => 'zh-cn',
  2520. 'accept' => '*/*',
  2521. 'host' => 'voicechat.lanmaonet.com',
  2522. 'content-type' => '',
  2523. 'content-length' => '',
  2524. )
  2525. [ info ] [ PARAM ] array (
  2526. )
  2527. [ info ] [ LOG ] INIT File
  2528. ---------------------------------------------------------------
  2529. [ 2021-09-18T18:00:30+08:00 ] 223.68.125.169 GET voicechat.lanmaonet.com/apple-app-site-association
  2530. [运行时间:0.003561s] [吞吐率:280.82req/s] [内存消耗:340.17kb] [文件加载:123]
  2531. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2532. [ info ] [ CACHE ] INIT File
  2533. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000216s ]
  2534. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2535. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2536. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2537. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  2538. [ info ] [ ROUTE ] array (
  2539. 'type' => 'module',
  2540. 'module' =>
  2541. array (
  2542. 0 => 'apple-app-site-association',
  2543. 1 => NULL,
  2544. 2 => NULL,
  2545. ),
  2546. )
  2547. [ info ] [ HEADER ] array (
  2548. 'user-agent' => 'swcd (unknown version) CFNetwork/974.2.1 Darwin/18.0.0',
  2549. 'accept-encoding' => 'br, gzip, deflate',
  2550. 'connection' => 'keep-alive',
  2551. 'accept-language' => 'zh-cn',
  2552. 'accept' => '*/*',
  2553. 'host' => 'voicechat.lanmaonet.com',
  2554. 'content-type' => '',
  2555. 'content-length' => '',
  2556. )
  2557. [ info ] [ PARAM ] array (
  2558. )
  2559. [ info ] [ LOG ] INIT File
  2560. ---------------------------------------------------------------
  2561. [ 2021-09-18T18:26:17+08:00 ] 207.46.13.95 GET voicechat.lanmaonet.com/
  2562. [运行时间:0.013396s] [吞吐率:74.65req/s] [内存消耗:468.58kb] [文件加载:135]
  2563. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2564. [ info ] [ CACHE ] INIT File
  2565. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000262s ]
  2566. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2567. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  2568. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2569. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  2570. [ info ] [ ROUTE ] array (
  2571. 'type' => 'module',
  2572. 'module' =>
  2573. array (
  2574. 0 => '',
  2575. 1 => NULL,
  2576. 2 => NULL,
  2577. ),
  2578. )
  2579. [ info ] [ HEADER ] array (
  2580. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  2581. 'from' => 'bingbot(at)microsoft.com',
  2582. 'accept-encoding' => 'gzip, deflate',
  2583. 'accept' => '*/*',
  2584. 'pragma' => 'no-cache',
  2585. 'cache-control' => 'no-cache',
  2586. 'host' => 'voicechat.lanmaonet.com',
  2587. 'content-type' => '',
  2588. 'content-length' => '',
  2589. )
  2590. [ info ] [ PARAM ] array (
  2591. )
  2592. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  2593. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000089s ]
  2594. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  2595. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000054s ]
  2596. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  2597. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  2598. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  2599. 0 => 'user',
  2600. 1 => 'site',
  2601. 2 => 'config',
  2602. ) ]
  2603. [ info ] [ LOG ] INIT File
  2604. ---------------------------------------------------------------
  2605. [ 2021-09-18T18:26:39+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  2606. [运行时间:0.003718s] [吞吐率:268.95req/s] [内存消耗:338.22kb] [文件加载:123]
  2607. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2608. [ info ] [ CACHE ] INIT File
  2609. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000214s ]
  2610. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2611. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2612. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2613. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  2614. [ info ] [ ROUTE ] array (
  2615. 'type' => 'module',
  2616. 'module' =>
  2617. array (
  2618. 0 => 'apple-app-site-association',
  2619. 1 => NULL,
  2620. 2 => NULL,
  2621. ),
  2622. )
  2623. [ info ] [ HEADER ] array (
  2624. 'accept-encoding' => 'gzip',
  2625. 'user-agent' => 'AASA-Bot/1.0.0',
  2626. 'host' => 'voicechat.lanmaonet.com',
  2627. 'content-type' => '',
  2628. 'content-length' => '',
  2629. )
  2630. [ info ] [ PARAM ] array (
  2631. )
  2632. [ info ] [ LOG ] INIT File
  2633. ---------------------------------------------------------------
  2634. [ 2021-09-18T18:42:06+08:00 ] 211.97.129.184 GET voicechat.lanmaonet.com/apple-app-site-association
  2635. [运行时间:0.003861s] [吞吐率:259.00req/s] [内存消耗:340.17kb] [文件加载:123]
  2636. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2637. [ info ] [ CACHE ] INIT File
  2638. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000246s ]
  2639. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2640. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2641. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2642. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  2643. [ info ] [ ROUTE ] array (
  2644. 'type' => 'module',
  2645. 'module' =>
  2646. array (
  2647. 0 => 'apple-app-site-association',
  2648. 1 => NULL,
  2649. 2 => NULL,
  2650. ),
  2651. )
  2652. [ info ] [ HEADER ] array (
  2653. 'user-agent' => 'swcd (unknown version) CFNetwork/1098.7 Darwin/19.0.0',
  2654. 'accept-encoding' => 'gzip, deflate, br',
  2655. 'connection' => 'keep-alive',
  2656. 'accept-language' => 'zh-cn',
  2657. 'accept' => '*/*',
  2658. 'host' => 'voicechat.lanmaonet.com',
  2659. 'content-type' => '',
  2660. 'content-length' => '',
  2661. )
  2662. [ info ] [ PARAM ] array (
  2663. )
  2664. [ info ] [ LOG ] INIT File
  2665. ---------------------------------------------------------------
  2666. [ 2021-09-18T18:51:56+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  2667. [运行时间:0.003922s] [吞吐率:254.97req/s] [内存消耗:338.22kb] [文件加载:123]
  2668. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2669. [ info ] [ CACHE ] INIT File
  2670. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000253s ]
  2671. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2672. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  2673. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2674. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  2675. [ info ] [ ROUTE ] array (
  2676. 'type' => 'module',
  2677. 'module' =>
  2678. array (
  2679. 0 => 'apple-app-site-association',
  2680. 1 => NULL,
  2681. 2 => NULL,
  2682. ),
  2683. )
  2684. [ info ] [ HEADER ] array (
  2685. 'accept-encoding' => 'gzip',
  2686. 'user-agent' => 'AASA-Bot/1.0.0',
  2687. 'host' => 'voicechat.lanmaonet.com',
  2688. 'content-type' => '',
  2689. 'content-length' => '',
  2690. )
  2691. [ info ] [ PARAM ] array (
  2692. )
  2693. [ info ] [ LOG ] INIT File
  2694. ---------------------------------------------------------------
  2695. [ 2021-09-18T19:33:51+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  2696. [运行时间:0.003994s] [吞吐率:250.38req/s] [内存消耗:338.22kb] [文件加载:123]
  2697. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2698. [ info ] [ CACHE ] INIT File
  2699. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000250s ]
  2700. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2701. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2702. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2703. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  2704. [ info ] [ ROUTE ] array (
  2705. 'type' => 'module',
  2706. 'module' =>
  2707. array (
  2708. 0 => 'apple-app-site-association',
  2709. 1 => NULL,
  2710. 2 => NULL,
  2711. ),
  2712. )
  2713. [ info ] [ HEADER ] array (
  2714. 'accept-encoding' => 'gzip',
  2715. 'user-agent' => 'AASA-Bot/1.0.0',
  2716. 'host' => 'voicechat.lanmaonet.com',
  2717. 'content-type' => '',
  2718. 'content-length' => '',
  2719. )
  2720. [ info ] [ PARAM ] array (
  2721. )
  2722. [ info ] [ LOG ] INIT File
  2723. ---------------------------------------------------------------
  2724. [ 2021-09-18T20:05:44+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  2725. [运行时间:0.004281s] [吞吐率:233.59req/s] [内存消耗:338.22kb] [文件加载:123]
  2726. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2727. [ info ] [ CACHE ] INIT File
  2728. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000245s ]
  2729. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2730. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2731. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2732. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
  2733. [ info ] [ ROUTE ] array (
  2734. 'type' => 'module',
  2735. 'module' =>
  2736. array (
  2737. 0 => 'apple-app-site-association',
  2738. 1 => NULL,
  2739. 2 => NULL,
  2740. ),
  2741. )
  2742. [ info ] [ HEADER ] array (
  2743. 'accept-encoding' => 'gzip',
  2744. 'user-agent' => 'AASA-Bot/1.0.0',
  2745. 'host' => 'voicechat.lanmaonet.com',
  2746. 'content-type' => '',
  2747. 'content-length' => '',
  2748. )
  2749. [ info ] [ PARAM ] array (
  2750. )
  2751. [ info ] [ LOG ] INIT File
  2752. ---------------------------------------------------------------
  2753. [ 2021-09-18T20:08:47+08:00 ] 120.36.187.242 GET voicechat.lanmaonet.com/apple-app-site-association
  2754. [运行时间:0.004287s] [吞吐率:233.26req/s] [内存消耗:340.17kb] [文件加载:123]
  2755. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2756. [ info ] [ CACHE ] INIT File
  2757. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000226s ]
  2758. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2759. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000068s ]
  2760. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2761. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  2762. [ info ] [ ROUTE ] array (
  2763. 'type' => 'module',
  2764. 'module' =>
  2765. array (
  2766. 0 => 'apple-app-site-association',
  2767. 1 => NULL,
  2768. 2 => NULL,
  2769. ),
  2770. )
  2771. [ info ] [ HEADER ] array (
  2772. 'user-agent' => 'swcd (unknown version) CFNetwork/1128.0.1 Darwin/19.6.0',
  2773. 'accept-encoding' => 'gzip, deflate, br',
  2774. 'connection' => 'keep-alive',
  2775. 'accept-language' => 'zh-cn',
  2776. 'accept' => '*/*',
  2777. 'host' => 'voicechat.lanmaonet.com',
  2778. 'content-type' => '',
  2779. 'content-length' => '',
  2780. )
  2781. [ info ] [ PARAM ] array (
  2782. )
  2783. [ info ] [ LOG ] INIT File
  2784. ---------------------------------------------------------------
  2785. [ 2021-09-18T20:33:17+08:00 ] 157.55.39.80 GET voicechat.lanmaonet.com/
  2786. [运行时间:0.007778s] [吞吐率:128.56req/s] [内存消耗:468.62kb] [文件加载:135]
  2787. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  2788. [ info ] [ CACHE ] INIT File
  2789. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000233s ]
  2790. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2791. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2792. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2793. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  2794. [ info ] [ ROUTE ] array (
  2795. 'type' => 'module',
  2796. 'module' =>
  2797. array (
  2798. 0 => '',
  2799. 1 => NULL,
  2800. 2 => NULL,
  2801. ),
  2802. )
  2803. [ info ] [ HEADER ] array (
  2804. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  2805. 'host' => 'voicechat.lanmaonet.com',
  2806. 'from' => 'bingbot(at)microsoft.com',
  2807. 'accept-encoding' => 'gzip, deflate',
  2808. 'accept' => '*/*',
  2809. 'pragma' => 'no-cache',
  2810. 'connection' => 'Keep-Alive',
  2811. 'cache-control' => 'no-cache',
  2812. 'content-type' => '',
  2813. 'content-length' => '',
  2814. )
  2815. [ info ] [ PARAM ] array (
  2816. )
  2817. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  2818. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000074s ]
  2819. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  2820. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000039s ]
  2821. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  2822. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  2823. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  2824. 0 => 'user',
  2825. 1 => 'site',
  2826. 2 => 'config',
  2827. ) ]
  2828. [ info ] [ LOG ] INIT File
  2829. ---------------------------------------------------------------
  2830. [ 2021-09-18T23:42:49+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  2831. [运行时间:0.007700s] [吞吐率:129.87req/s] [内存消耗:338.22kb] [文件加载:123]
  2832. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2833. [ info ] [ CACHE ] INIT File
  2834. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000746s ]
  2835. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  2836. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  2837. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2838. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  2839. [ info ] [ ROUTE ] array (
  2840. 'type' => 'module',
  2841. 'module' =>
  2842. array (
  2843. 0 => 'apple-app-site-association',
  2844. 1 => NULL,
  2845. 2 => NULL,
  2846. ),
  2847. )
  2848. [ info ] [ HEADER ] array (
  2849. 'accept-encoding' => 'gzip',
  2850. 'user-agent' => 'AASA-Bot/1.0.0',
  2851. 'host' => 'voicechat.lanmaonet.com',
  2852. 'content-type' => '',
  2853. 'content-length' => '',
  2854. )
  2855. [ info ] [ PARAM ] array (
  2856. )
  2857. [ info ] [ LOG ] INIT File
  2858. ---------------------------------------------------------------
  2859. [ 2021-09-18T23:43:23+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  2860. [运行时间:0.003219s] [吞吐率:310.64req/s] [内存消耗:338.22kb] [文件加载:123]
  2861. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2862. [ info ] [ CACHE ] INIT File
  2863. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000173s ]
  2864. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2865. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2866. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2867. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2868. [ info ] [ ROUTE ] array (
  2869. 'type' => 'module',
  2870. 'module' =>
  2871. array (
  2872. 0 => 'apple-app-site-association',
  2873. 1 => NULL,
  2874. 2 => NULL,
  2875. ),
  2876. )
  2877. [ info ] [ HEADER ] array (
  2878. 'accept-encoding' => 'gzip',
  2879. 'user-agent' => 'AASA-Bot/1.0.0',
  2880. 'host' => 'voicechat.lanmaonet.com',
  2881. 'content-type' => '',
  2882. 'content-length' => '',
  2883. )
  2884. [ info ] [ PARAM ] array (
  2885. )
  2886. [ info ] [ LOG ] INIT File