23.log 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480
  1. ---------------------------------------------------------------
  2. [ 2025-04-23T01:47:50+08:00 ] 88.99.104.56 GET ts.shanghairongxuan.top/7lnIk8lkpq
  3. [运行时间:0.039764s] [吞吐率:25.15req/s] [内存消耗:2,119.31kb] [文件加载:109]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001338s ]
  7. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  8. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000250s ]
  9. [ info ] [ ROUTE ] array (
  10. 'type' => 'module',
  11. 'module' =>
  12. array (
  13. 0 => '7lnIk8lkpq',
  14. 1 => NULL,
  15. 2 => NULL,
  16. ),
  17. )
  18. [ info ] [ HEADER ] array (
  19. 'accept-encoding' => 'gzip',
  20. 'user-agent' => 'Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.119 Mobile Safari/537.36',
  21. 'host' => 'ts.shanghairongxuan.top',
  22. 'content-length' => '',
  23. 'content-type' => '',
  24. )
  25. [ info ] [ PARAM ] array (
  26. )
  27. [ info ] [ LOG ] INIT File
  28. ---------------------------------------------------------------
  29. [ 2025-04-23T01:47:50+08:00 ] 88.99.104.56 GET ts.shanghairongxuan.top/7lnIk8lkpq
  30. [运行时间:0.033672s] [吞吐率:29.70req/s] [内存消耗:2,119.35kb] [文件加载:109]
  31. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  32. [ info ] [ CACHE ] INIT File
  33. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001565s ]
  34. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  35. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000306s ]
  36. [ info ] [ ROUTE ] array (
  37. 'type' => 'module',
  38. 'module' =>
  39. array (
  40. 0 => '404',
  41. 1 => NULL,
  42. 2 => NULL,
  43. ),
  44. )
  45. [ info ] [ HEADER ] array (
  46. 'accept-encoding' => 'gzip',
  47. 'user-agent' => 'Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.119 Mobile Safari/537.36',
  48. 'host' => 'ts.shanghairongxuan.top',
  49. 'content-length' => '',
  50. 'content-type' => '',
  51. )
  52. [ info ] [ PARAM ] array (
  53. )
  54. [ info ] [ LOG ] INIT File
  55. ---------------------------------------------------------------
  56. [ 2025-04-23T12:28:03+08:00 ] 104.248.230.107 GET ts.shanghairongxuan.top/
  57. [运行时间:0.054933s] [吞吐率:18.20req/s] [内存消耗:2,968.90kb] [文件加载:120]
  58. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  59. [ info ] [ CACHE ] INIT File
  60. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001294s ]
  61. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000232s ]
  62. [ info ] [ ROUTE ] array (
  63. 'type' => 'module',
  64. 'module' =>
  65. array (
  66. 0 => '',
  67. 1 => NULL,
  68. 2 => NULL,
  69. ),
  70. )
  71. [ info ] [ HEADER ] array (
  72. 'user-agent' => 'Mozilla/5.0 (compatible)',
  73. 'cache-control' => 'no-cache',
  74. 'pragma' => 'no-cache',
  75. 'accept-language' => 'en-US,en;q=0.9',
  76. '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.7',
  77. 'accept-encoding' => 'gzip, deflate',
  78. 'host' => 'ts.shanghairongxuan.top',
  79. 'content-length' => '',
  80. 'content-type' => '',
  81. )
  82. [ info ] [ PARAM ] array (
  83. )
  84. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002166s ]
  85. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Index.php ]
  86. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/view/index/index.html [ array (
  87. 0 => 'user',
  88. 1 => 'site',
  89. 2 => 'config',
  90. ) ]
  91. [ info ] [ LOG ] INIT File
  92. ---------------------------------------------------------------
  93. [ 2025-04-23T12:28:04+08:00 ] 104.248.230.107 GET ts.shanghairongxuan.top/ads.txt
  94. [运行时间:0.029043s] [吞吐率:34.43req/s] [内存消耗:2,099.45kb] [文件加载:108]
  95. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  96. [ info ] [ CACHE ] INIT File
  97. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001326s ]
  98. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000258s ]
  99. [ info ] [ ROUTE ] array (
  100. 'type' => 'module',
  101. 'module' =>
  102. array (
  103. 0 => 'ads.txt',
  104. 1 => NULL,
  105. 2 => NULL,
  106. ),
  107. )
  108. [ info ] [ HEADER ] array (
  109. 'user-agent' => 'Mozilla/5.0 (compatible)',
  110. 'cache-control' => 'no-cache',
  111. 'pragma' => 'no-cache',
  112. 'accept-language' => 'en-US,en;q=0.9',
  113. '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.7',
  114. 'accept-encoding' => 'gzip, deflate',
  115. 'host' => 'ts.shanghairongxuan.top',
  116. 'content-length' => '',
  117. 'content-type' => '',
  118. )
  119. [ info ] [ PARAM ] array (
  120. )
  121. [ info ] [ LOG ] INIT File
  122. ---------------------------------------------------------------
  123. [ 2025-04-23T12:28:04+08:00 ] 104.248.230.107 GET ts.shanghairongxuan.top/ads.txt
  124. [运行时间:0.041155s] [吞吐率:24.30req/s] [内存消耗:2,099.49kb] [文件加载:108]
  125. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  126. [ info ] [ CACHE ] INIT File
  127. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001774s ]
  128. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000360s ]
  129. [ info ] [ ROUTE ] array (
  130. 'type' => 'module',
  131. 'module' =>
  132. array (
  133. 0 => '404',
  134. 1 => NULL,
  135. 2 => NULL,
  136. ),
  137. )
  138. [ info ] [ HEADER ] array (
  139. 'user-agent' => 'Mozilla/5.0 (compatible)',
  140. 'cache-control' => 'no-cache',
  141. 'pragma' => 'no-cache',
  142. 'accept-language' => 'en-US,en;q=0.9',
  143. '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.7',
  144. 'accept-encoding' => 'gzip, deflate',
  145. 'host' => 'ts.shanghairongxuan.top',
  146. 'content-length' => '',
  147. 'content-type' => '',
  148. )
  149. [ info ] [ PARAM ] array (
  150. )
  151. [ info ] [ LOG ] INIT File
  152. ---------------------------------------------------------------
  153. [ 2025-04-23T12:28:05+08:00 ] 104.248.230.107 GET ts.shanghairongxuan.top/
  154. [运行时间:0.064346s] [吞吐率:15.54req/s] [内存消耗:2,968.96kb] [文件加载:120]
  155. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
  156. [ info ] [ CACHE ] INIT File
  157. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001984s ]
  158. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000373s ]
  159. [ info ] [ ROUTE ] array (
  160. 'type' => 'module',
  161. 'module' =>
  162. array (
  163. 0 => '',
  164. 1 => NULL,
  165. 2 => NULL,
  166. ),
  167. )
  168. [ info ] [ HEADER ] array (
  169. 'user-agent' => 'Mozilla/5.0 (compatible)',
  170. 'cache-control' => 'no-cache',
  171. 'pragma' => 'no-cache',
  172. 'accept-language' => 'en-US,en;q=0.9',
  173. '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.7',
  174. 'accept-encoding' => 'gzip, deflate',
  175. 'host' => 'ts.shanghairongxuan.top',
  176. 'content-length' => '',
  177. 'content-type' => '',
  178. )
  179. [ info ] [ PARAM ] array (
  180. )
  181. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002777s ]
  182. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Index.php ]
  183. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/view/index/index.html [ array (
  184. 0 => 'user',
  185. 1 => 'site',
  186. 2 => 'config',
  187. ) ]
  188. [ info ] [ LOG ] INIT File
  189. ---------------------------------------------------------------
  190. [ 2025-04-23T12:28:15+08:00 ] 104.248.230.107 GET ts.shanghairongxuan.top/ads.txt
  191. [运行时间:0.040360s] [吞吐率:24.78req/s] [内存消耗:2,099.52kb] [文件加载:108]
  192. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  193. [ info ] [ CACHE ] INIT File
  194. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001142s ]
  195. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000214s ]
  196. [ info ] [ ROUTE ] array (
  197. 'type' => 'module',
  198. 'module' =>
  199. array (
  200. 0 => 'ads.txt',
  201. 1 => NULL,
  202. 2 => NULL,
  203. ),
  204. )
  205. [ info ] [ HEADER ] array (
  206. 'user-agent' => 'Mozilla/5.0 (compatible)',
  207. 'cache-control' => 'no-cache',
  208. 'pragma' => 'no-cache',
  209. 'accept-language' => 'en-US,en;q=0.9',
  210. '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.7',
  211. 'accept-encoding' => 'gzip, deflate',
  212. 'host' => 'ts.shanghairongxuan.top',
  213. 'content-length' => '',
  214. 'content-type' => '',
  215. )
  216. [ info ] [ PARAM ] array (
  217. )
  218. [ info ] [ LOG ] INIT File
  219. ---------------------------------------------------------------
  220. [ 2025-04-23T12:28:16+08:00 ] 104.248.230.107 GET ts.shanghairongxuan.top/ads.txt
  221. [运行时间:0.033787s] [吞吐率:29.60req/s] [内存消耗:2,099.55kb] [文件加载:108]
  222. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  223. [ info ] [ CACHE ] INIT File
  224. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001101s ]
  225. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000212s ]
  226. [ info ] [ ROUTE ] array (
  227. 'type' => 'module',
  228. 'module' =>
  229. array (
  230. 0 => '404',
  231. 1 => NULL,
  232. 2 => NULL,
  233. ),
  234. )
  235. [ info ] [ HEADER ] array (
  236. 'user-agent' => 'Mozilla/5.0 (compatible)',
  237. 'cache-control' => 'no-cache',
  238. 'pragma' => 'no-cache',
  239. 'accept-language' => 'en-US,en;q=0.9',
  240. '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.7',
  241. 'accept-encoding' => 'gzip, deflate',
  242. 'host' => 'ts.shanghairongxuan.top',
  243. 'content-length' => '',
  244. 'content-type' => '',
  245. )
  246. [ info ] [ PARAM ] array (
  247. )
  248. [ info ] [ LOG ] INIT File
  249. ---------------------------------------------------------------
  250. [ 2025-04-23T13:03:04+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/tannuoyun.php/txjl/moneylog?ref=addtabs
  251. [运行时间:0.049709s] [吞吐率:20.12req/s] [内存消耗:2,933.55kb] [文件加载:124]
  252. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000077s ]
  253. [ info ] [ CACHE ] INIT File
  254. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001173s ]
  255. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  256. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000238s ]
  257. [ info ] [ ROUTE ] array (
  258. 'type' => 'module',
  259. 'module' =>
  260. array (
  261. 0 => 'admin',
  262. 1 => 'txjl.moneylog',
  263. 2 => NULL,
  264. ),
  265. )
  266. [ info ] [ HEADER ] array (
  267. 'cookie' => 'PHPSESSID=ruojki2ereo7dgpmmffsfo9mb5; keeplogin=1%7C86400%7C1744940254%7Cc64695835109b2925e9b37cae4776a20',
  268. 'priority' => 'u=0, i',
  269. 'accept-language' => 'zh-CN,zh;q=0.9',
  270. 'accept-encoding' => 'gzip, deflate, br, zstd',
  271. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php%2Ftxjl%2Fmoneylog%3Fref%3Daddtabs',
  272. 'sec-fetch-dest' => 'document',
  273. 'sec-fetch-user' => '?1',
  274. 'sec-fetch-mode' => 'navigate',
  275. 'sec-fetch-site' => 'same-origin',
  276. '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.7',
  277. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36',
  278. 'upgrade-insecure-requests' => '1',
  279. 'sec-ch-ua-platform' => '"Windows"',
  280. 'sec-ch-ua-mobile' => '?0',
  281. 'sec-ch-ua' => '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  282. 'host' => 'ts.shanghairongxuan.top',
  283. 'content-length' => '',
  284. 'content-type' => '',
  285. )
  286. [ info ] [ PARAM ] array (
  287. 'ref' => 'addtabs',
  288. )
  289. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  290. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001730s ]
  291. [ info ] [ SESSION ] INIT array (
  292. 'id' => '',
  293. 'var_session_id' => '',
  294. 'prefix' => 'think',
  295. 'type' => '',
  296. 'auto_start' => true,
  297. )
  298. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/common/view/tpl/dispatch_jump.tpl [ array (
  299. 0 => 'code',
  300. 1 => 'msg',
  301. 2 => 'data',
  302. 3 => 'url',
  303. 4 => 'wait',
  304. ) ]
  305. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000156s ]
  306. [ info ] [ LOG ] INIT File
  307. ---------------------------------------------------------------
  308. [ 2025-04-23T13:03:07+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php%2Ftxjl%2Fmoneylog%3Fref%3Daddtabs
  309. [运行时间:0.034239s] [吞吐率:29.21req/s] [内存消耗:3,399.25kb] [文件加载:127]
  310. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
  311. [ info ] [ CACHE ] INIT File
  312. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001028s ]
  313. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  314. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000234s ]
  315. [ info ] [ ROUTE ] array (
  316. 'type' => 'module',
  317. 'module' =>
  318. array (
  319. 0 => 'admin',
  320. 1 => 'index',
  321. 2 => 'login',
  322. ),
  323. )
  324. [ info ] [ HEADER ] array (
  325. 'cookie' => 'PHPSESSID=ruojki2ereo7dgpmmffsfo9mb5; keeplogin=1%7C86400%7C1744940254%7Cc64695835109b2925e9b37cae4776a20',
  326. 'priority' => 'u=0, i',
  327. 'accept-language' => 'zh-CN,zh;q=0.9',
  328. 'accept-encoding' => 'gzip, deflate, br, zstd',
  329. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/txjl/moneylog?ref=addtabs',
  330. 'sec-fetch-dest' => 'document',
  331. 'sec-fetch-mode' => 'navigate',
  332. 'sec-fetch-site' => 'same-origin',
  333. '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.7',
  334. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36',
  335. 'upgrade-insecure-requests' => '1',
  336. 'sec-ch-ua-platform' => '"Windows"',
  337. 'sec-ch-ua-mobile' => '?0',
  338. 'sec-ch-ua' => '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  339. 'host' => 'ts.shanghairongxuan.top',
  340. 'content-length' => '',
  341. 'content-type' => '',
  342. )
  343. [ info ] [ PARAM ] array (
  344. 'url' => '/tannuoyun.php/txjl/moneylog?ref=addtabs',
  345. )
  346. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  347. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001231s ]
  348. [ info ] [ SESSION ] INIT array (
  349. 'id' => '',
  350. 'var_session_id' => '',
  351. 'prefix' => 'think',
  352. 'type' => '',
  353. 'auto_start' => true,
  354. )
  355. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  356. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Index.php ]
  357. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/view/index/login.html [ array (
  358. 0 => 'breadcrumb',
  359. 1 => 'site',
  360. 2 => 'config',
  361. 3 => 'auth',
  362. 4 => 'admin',
  363. 5 => 'background',
  364. 6 => 'title',
  365. ) ]
  366. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000122s ]
  367. [ info ] [ LOG ] INIT File
  368. ---------------------------------------------------------------
  369. [ 2025-04-23T13:03:11+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/tannuoyun.php/ajax/lang?callback=define&controllername=index&v=1745384587
  370. [运行时间:0.105654s] [吞吐率:9.46req/s] [内存消耗:3,406.95kb] [文件加载:127]
  371. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  372. [ info ] [ CACHE ] INIT File
  373. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002247s ]
  374. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  375. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000684s ]
  376. [ info ] [ ROUTE ] array (
  377. 'type' => 'module',
  378. 'module' =>
  379. array (
  380. 0 => 'admin',
  381. 1 => 'ajax',
  382. 2 => 'lang',
  383. ),
  384. )
  385. [ info ] [ HEADER ] array (
  386. 'cookie' => 'PHPSESSID=ruojki2ereo7dgpmmffsfo9mb5; keeplogin=1%7C86400%7C1744940254%7Cc64695835109b2925e9b37cae4776a20',
  387. 'accept-language' => 'zh-CN,zh;q=0.9',
  388. 'accept-encoding' => 'gzip, deflate, br, zstd',
  389. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php%2Ftxjl%2Fmoneylog%3Fref%3Daddtabs',
  390. 'sec-fetch-dest' => 'script',
  391. 'sec-fetch-mode' => 'no-cors',
  392. 'sec-fetch-site' => 'same-origin',
  393. 'accept' => '*/*',
  394. 'sec-ch-ua-mobile' => '?0',
  395. 'sec-ch-ua' => '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  396. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36',
  397. 'sec-ch-ua-platform' => '"Windows"',
  398. 'host' => 'ts.shanghairongxuan.top',
  399. 'content-length' => '',
  400. 'content-type' => '',
  401. )
  402. [ info ] [ PARAM ] array (
  403. 'callback' => 'define',
  404. 'controllername' => 'index',
  405. 'v' => '1745384587',
  406. )
  407. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  408. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002852s ]
  409. [ info ] [ SESSION ] INIT array (
  410. 'id' => '',
  411. 'var_session_id' => '',
  412. 'prefix' => 'think',
  413. 'type' => '',
  414. 'auto_start' => true,
  415. )
  416. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/ajax.php
  417. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Ajax.php ]
  418. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  419. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000664s ]
  420. [ info ] [ LOG ] INIT File
  421. ---------------------------------------------------------------
  422. [ 2025-04-23T16:21:44+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/index
  423. [运行时间:0.052659s] [吞吐率:18.99req/s] [内存消耗:3,009.70kb] [文件加载:122]
  424. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000078s ]
  425. [ info ] [ CACHE ] INIT File
  426. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001577s ]
  427. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  428. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000304s ]
  429. [ info ] [ ROUTE ] array (
  430. 'type' => 'module',
  431. 'module' =>
  432. array (
  433. 0 => 'index',
  434. 1 => NULL,
  435. 2 => NULL,
  436. ),
  437. )
  438. [ info ] [ HEADER ] array (
  439. 'priority' => 'u=0, i',
  440. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  441. 'accept-encoding' => 'gzip, deflate, br, zstd',
  442. 'sec-fetch-dest' => 'document',
  443. 'sec-fetch-user' => '?1',
  444. 'sec-fetch-mode' => 'navigate',
  445. 'sec-fetch-site' => 'none',
  446. '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.7',
  447. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  448. 'upgrade-insecure-requests' => '1',
  449. 'sec-ch-ua-platform' => '"Android"',
  450. 'sec-ch-ua-mobile' => '?1',
  451. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  452. 'host' => 'ts.shanghairongxuan.top',
  453. 'content-length' => '',
  454. 'content-type' => '',
  455. )
  456. [ info ] [ PARAM ] array (
  457. )
  458. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  459. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002516s ]
  460. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn/index.php
  461. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Index.php ]
  462. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/view/index/index.html [ array (
  463. 0 => 'user',
  464. 1 => 'site',
  465. 2 => 'config',
  466. ) ]
  467. [ info ] [ LOG ] INIT File
  468. ---------------------------------------------------------------
  469. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/favicon.ico
  470. [运行时间:0.042758s] [吞吐率:23.39req/s] [内存消耗:2,125.05kb] [文件加载:109]
  471. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  472. [ info ] [ CACHE ] INIT File
  473. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001850s ]
  474. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  475. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000412s ]
  476. [ info ] [ ROUTE ] array (
  477. 'type' => 'module',
  478. 'module' =>
  479. array (
  480. 0 => 'favicon.ico',
  481. 1 => NULL,
  482. 2 => NULL,
  483. ),
  484. )
  485. [ info ] [ HEADER ] array (
  486. 'priority' => 'u=1, i',
  487. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  488. 'accept-encoding' => 'gzip, deflate, br, zstd',
  489. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  490. 'sec-fetch-dest' => 'image',
  491. 'sec-fetch-mode' => 'no-cors',
  492. 'sec-fetch-site' => 'same-origin',
  493. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  494. 'sec-ch-ua-mobile' => '?1',
  495. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  496. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  497. 'sec-ch-ua-platform' => '"Android"',
  498. 'host' => 'ts.shanghairongxuan.top',
  499. 'content-length' => '',
  500. 'content-type' => '',
  501. )
  502. [ info ] [ PARAM ] array (
  503. )
  504. [ info ] [ LOG ] INIT File
  505. ---------------------------------------------------------------
  506. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/indexdata
  507. [运行时间:0.132251s] [吞吐率:7.56req/s] [内存消耗:4,195.92kb] [文件加载:132]
  508. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  509. [ info ] [ CACHE ] INIT File
  510. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001639s ]
  511. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  512. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000343s ]
  513. [ info ] [ ROUTE ] array (
  514. 'type' => 'module',
  515. 'module' =>
  516. array (
  517. 0 => 'api',
  518. 1 => 'video',
  519. 2 => 'indexdata',
  520. ),
  521. )
  522. [ info ] [ HEADER ] array (
  523. 'priority' => 'u=1, i',
  524. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  525. 'accept-encoding' => 'gzip, deflate, br, zstd',
  526. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  527. 'sec-fetch-dest' => 'empty',
  528. 'sec-fetch-mode' => 'cors',
  529. 'sec-fetch-site' => 'same-origin',
  530. 'accept' => '*/*',
  531. 'sec-ch-ua-mobile' => '?1',
  532. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  533. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  534. 'sec-ch-ua-platform' => '"Android"',
  535. 'host' => 'ts.shanghairongxuan.top',
  536. 'content-length' => '',
  537. 'content-type' => '',
  538. )
  539. [ info ] [ PARAM ] array (
  540. )
  541. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  542. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001795s ]
  543. [ info ] [ RUN ] app\api\controller\Video->indexdata[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  544. [ info ] [ DB ] INIT mysql
  545. [ info ] [ LOG ] INIT File
  546. ---------------------------------------------------------------
  547. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/favicon.ico
  548. [运行时间:0.049136s] [吞吐率:20.35req/s] [内存消耗:2,125.08kb] [文件加载:109]
  549. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  550. [ info ] [ CACHE ] INIT File
  551. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002055s ]
  552. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  553. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000392s ]
  554. [ info ] [ ROUTE ] array (
  555. 'type' => 'module',
  556. 'module' =>
  557. array (
  558. 0 => '404',
  559. 1 => NULL,
  560. 2 => NULL,
  561. ),
  562. )
  563. [ info ] [ HEADER ] array (
  564. 'priority' => 'u=1, i',
  565. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  566. 'accept-encoding' => 'gzip, deflate, br, zstd',
  567. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  568. 'sec-fetch-dest' => 'image',
  569. 'sec-fetch-mode' => 'no-cors',
  570. 'sec-fetch-site' => 'same-origin',
  571. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  572. 'sec-ch-ua-mobile' => '?1',
  573. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  574. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  575. 'sec-ch-ua-platform' => '"Android"',
  576. 'host' => 'ts.shanghairongxuan.top',
  577. 'content-length' => '',
  578. 'content-type' => '',
  579. )
  580. [ info ] [ PARAM ] array (
  581. )
  582. [ info ] [ LOG ] INIT File
  583. ---------------------------------------------------------------
  584. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//uploads/20230305/7ebc8bf331d9e1223e9263a678b7e28e.png
  585. [运行时间:0.029526s] [吞吐率:33.87req/s] [内存消耗:2,125.16kb] [文件加载:109]
  586. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  587. [ info ] [ CACHE ] INIT File
  588. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001235s ]
  589. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  590. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000242s ]
  591. [ info ] [ ROUTE ] array (
  592. 'type' => 'module',
  593. 'module' =>
  594. array (
  595. 0 => '404',
  596. 1 => NULL,
  597. 2 => NULL,
  598. ),
  599. )
  600. [ info ] [ HEADER ] array (
  601. 'priority' => 'i',
  602. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  603. 'accept-encoding' => 'gzip, deflate, br, zstd',
  604. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  605. 'sec-fetch-dest' => 'image',
  606. 'sec-fetch-mode' => 'no-cors',
  607. 'sec-fetch-site' => 'same-origin',
  608. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  609. 'sec-ch-ua-mobile' => '?1',
  610. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  611. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  612. 'sec-ch-ua-platform' => '"Android"',
  613. 'host' => 'ts.shanghairongxuan.top',
  614. 'content-length' => '',
  615. 'content-type' => '',
  616. )
  617. [ info ] [ PARAM ] array (
  618. )
  619. [ info ] [ LOG ] INIT File
  620. ---------------------------------------------------------------
  621. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//uploads/20230306/ccb58a7201ece0ed717acf6a141bc3c1.jpg
  622. [运行时间:0.030490s] [吞吐率:32.80req/s] [内存消耗:2,125.16kb] [文件加载:109]
  623. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000079s ]
  624. [ info ] [ CACHE ] INIT File
  625. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001116s ]
  626. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  627. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000233s ]
  628. [ info ] [ ROUTE ] array (
  629. 'type' => 'module',
  630. 'module' =>
  631. array (
  632. 0 => '404',
  633. 1 => NULL,
  634. 2 => NULL,
  635. ),
  636. )
  637. [ info ] [ HEADER ] array (
  638. 'priority' => 'i',
  639. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  640. 'accept-encoding' => 'gzip, deflate, br, zstd',
  641. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  642. 'sec-fetch-dest' => 'image',
  643. 'sec-fetch-mode' => 'no-cors',
  644. 'sec-fetch-site' => 'same-origin',
  645. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  646. 'sec-ch-ua-mobile' => '?1',
  647. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  648. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  649. 'sec-ch-ua-platform' => '"Android"',
  650. 'host' => 'ts.shanghairongxuan.top',
  651. 'content-length' => '',
  652. 'content-type' => '',
  653. )
  654. [ info ] [ PARAM ] array (
  655. )
  656. [ info ] [ LOG ] INIT File
  657. ---------------------------------------------------------------
  658. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//uploads/20230306/8403656320520aa7a778312fac8d35a7.jpg
  659. [运行时间:0.060216s] [吞吐率:16.61req/s] [内存消耗:2,125.16kb] [文件加载:109]
  660. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  661. [ info ] [ CACHE ] INIT File
  662. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.026217s ]
  663. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  664. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000396s ]
  665. [ info ] [ ROUTE ] array (
  666. 'type' => 'module',
  667. 'module' =>
  668. array (
  669. 0 => '404',
  670. 1 => NULL,
  671. 2 => NULL,
  672. ),
  673. )
  674. [ info ] [ HEADER ] array (
  675. 'priority' => 'i',
  676. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  677. 'accept-encoding' => 'gzip, deflate, br, zstd',
  678. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  679. 'sec-fetch-dest' => 'image',
  680. 'sec-fetch-mode' => 'no-cors',
  681. 'sec-fetch-site' => 'same-origin',
  682. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  683. 'sec-ch-ua-mobile' => '?1',
  684. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  685. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  686. 'sec-ch-ua-platform' => '"Android"',
  687. 'host' => 'ts.shanghairongxuan.top',
  688. 'content-length' => '',
  689. 'content-type' => '',
  690. )
  691. [ info ] [ PARAM ] array (
  692. )
  693. [ info ] [ LOG ] INIT File
  694. ---------------------------------------------------------------
  695. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//uploads/20230306/f3f80c3170be88fdba192b968a699667.jpg
  696. [运行时间:0.061031s] [吞吐率:16.39req/s] [内存消耗:2,125.16kb] [文件加载:109]
  697. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
  698. [ info ] [ CACHE ] INIT File
  699. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.023493s ]
  700. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  701. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000282s ]
  702. [ info ] [ ROUTE ] array (
  703. 'type' => 'module',
  704. 'module' =>
  705. array (
  706. 0 => '404',
  707. 1 => NULL,
  708. 2 => NULL,
  709. ),
  710. )
  711. [ info ] [ HEADER ] array (
  712. 'priority' => 'i',
  713. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  714. 'accept-encoding' => 'gzip, deflate, br, zstd',
  715. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  716. 'sec-fetch-dest' => 'image',
  717. 'sec-fetch-mode' => 'no-cors',
  718. 'sec-fetch-site' => 'same-origin',
  719. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  720. 'sec-ch-ua-mobile' => '?1',
  721. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  722. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  723. 'sec-ch-ua-platform' => '"Android"',
  724. 'host' => 'ts.shanghairongxuan.top',
  725. 'content-length' => '',
  726. 'content-type' => '',
  727. )
  728. [ info ] [ PARAM ] array (
  729. )
  730. [ info ] [ LOG ] INIT File
  731. ---------------------------------------------------------------
  732. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//uploads/20230306/e61f9756925b537a562dcd3e45d47a92.jpg
  733. [运行时间:0.063814s] [吞吐率:15.67req/s] [内存消耗:2,125.16kb] [文件加载:109]
  734. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  735. [ info ] [ CACHE ] INIT File
  736. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.026062s ]
  737. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  738. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000380s ]
  739. [ info ] [ ROUTE ] array (
  740. 'type' => 'module',
  741. 'module' =>
  742. array (
  743. 0 => '404',
  744. 1 => NULL,
  745. 2 => NULL,
  746. ),
  747. )
  748. [ info ] [ HEADER ] array (
  749. 'priority' => 'i',
  750. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  751. 'accept-encoding' => 'gzip, deflate, br, zstd',
  752. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  753. 'sec-fetch-dest' => 'image',
  754. 'sec-fetch-mode' => 'no-cors',
  755. 'sec-fetch-site' => 'same-origin',
  756. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  757. 'sec-ch-ua-mobile' => '?1',
  758. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  759. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  760. 'sec-ch-ua-platform' => '"Android"',
  761. 'host' => 'ts.shanghairongxuan.top',
  762. 'content-length' => '',
  763. 'content-type' => '',
  764. )
  765. [ info ] [ PARAM ] array (
  766. )
  767. [ info ] [ LOG ] INIT File
  768. ---------------------------------------------------------------
  769. [ 2025-04-23T16:21:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//uploads/20230306/1665d85e9d007dcba80b05b50c94c132.jpg
  770. [运行时间:0.064597s] [吞吐率:15.48req/s] [内存消耗:2,125.16kb] [文件加载:109]
  771. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  772. [ info ] [ CACHE ] INIT File
  773. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.021414s ]
  774. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  775. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000571s ]
  776. [ info ] [ ROUTE ] array (
  777. 'type' => 'module',
  778. 'module' =>
  779. array (
  780. 0 => '404',
  781. 1 => NULL,
  782. 2 => NULL,
  783. ),
  784. )
  785. [ info ] [ HEADER ] array (
  786. 'priority' => 'i',
  787. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  788. 'accept-encoding' => 'gzip, deflate, br, zstd',
  789. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  790. 'sec-fetch-dest' => 'image',
  791. 'sec-fetch-mode' => 'no-cors',
  792. 'sec-fetch-site' => 'same-origin',
  793. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  794. 'sec-ch-ua-mobile' => '?1',
  795. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  796. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  797. 'sec-ch-ua-platform' => '"Android"',
  798. 'host' => 'ts.shanghairongxuan.top',
  799. 'content-length' => '',
  800. 'content-type' => '',
  801. )
  802. [ info ] [ PARAM ] array (
  803. )
  804. [ info ] [ LOG ] INIT File
  805. ---------------------------------------------------------------
  806. [ 2025-04-23T16:21:55+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  807. [运行时间:0.092383s] [吞吐率:10.82req/s] [内存消耗:4,172.65kb] [文件加载:132]
  808. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  809. [ info ] [ CACHE ] INIT File
  810. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003022s ]
  811. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  812. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000229s ]
  813. [ info ] [ ROUTE ] array (
  814. 'type' => 'module',
  815. 'module' =>
  816. array (
  817. 0 => 'api',
  818. 1 => 'video',
  819. 2 => 'lists',
  820. ),
  821. )
  822. [ info ] [ HEADER ] array (
  823. 'priority' => 'u=1, i',
  824. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  825. 'accept-encoding' => 'gzip, deflate, br, zstd',
  826. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  827. 'sec-fetch-dest' => 'empty',
  828. 'sec-fetch-mode' => 'cors',
  829. 'sec-fetch-site' => 'same-origin',
  830. 'accept' => '*/*',
  831. 'sec-ch-ua-mobile' => '?1',
  832. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  833. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  834. 'sec-ch-ua-platform' => '"Android"',
  835. 'host' => 'ts.shanghairongxuan.top',
  836. 'content-length' => '',
  837. 'content-type' => '',
  838. )
  839. [ info ] [ PARAM ] array (
  840. 'limit' => '15',
  841. 'ishot' => '2',
  842. )
  843. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  844. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001790s ]
  845. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  846. [ info ] [ DB ] INIT mysql
  847. [ info ] [ LOG ] INIT File
  848. ---------------------------------------------------------------
  849. [ 2025-04-23T16:22:02+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/login?account=15356590576&password=qqqq7788&version=web
  850. [运行时间:0.109879s] [吞吐率:9.10req/s] [内存消耗:4,182.36kb] [文件加载:135]
  851. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000071s ]
  852. [ info ] [ CACHE ] INIT File
  853. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001736s ]
  854. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  855. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000334s ]
  856. [ info ] [ ROUTE ] array (
  857. 'type' => 'module',
  858. 'module' =>
  859. array (
  860. 0 => 'api',
  861. 1 => 'user',
  862. 2 => 'login',
  863. ),
  864. )
  865. [ info ] [ HEADER ] array (
  866. 'priority' => 'u=1, i',
  867. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  868. 'accept-encoding' => 'gzip, deflate, br, zstd',
  869. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  870. 'sec-fetch-dest' => 'empty',
  871. 'sec-fetch-mode' => 'cors',
  872. 'sec-fetch-site' => 'same-origin',
  873. 'accept' => '*/*',
  874. 'sec-ch-ua-mobile' => '?1',
  875. 'content-type' => 'application/x-www-form-urlencoded',
  876. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  877. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  878. 'sec-ch-ua-platform' => '"Android"',
  879. 'host' => 'ts.shanghairongxuan.top',
  880. 'content-length' => '',
  881. )
  882. [ info ] [ PARAM ] array (
  883. 'account' => '15356590576',
  884. 'password' => 'qqqq7788',
  885. 'version' => 'web',
  886. )
  887. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  888. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001922s ]
  889. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  890. [ info ] [ DB ] INIT mysql
  891. [ info ] [ RUN ] app\api\controller\User->login[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  892. [ info ] [ TOKEN ] INIT Mysql
  893. [ info ] [ LOG ] INIT File
  894. ---------------------------------------------------------------
  895. [ 2025-04-23T16:22:03+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  896. [运行时间:0.075064s] [吞吐率:13.32req/s] [内存消耗:4,172.65kb] [文件加载:132]
  897. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  898. [ info ] [ CACHE ] INIT File
  899. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001047s ]
  900. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  901. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000236s ]
  902. [ info ] [ ROUTE ] array (
  903. 'type' => 'module',
  904. 'module' =>
  905. array (
  906. 0 => 'api',
  907. 1 => 'video',
  908. 2 => 'lists',
  909. ),
  910. )
  911. [ info ] [ HEADER ] array (
  912. 'priority' => 'u=1, i',
  913. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  914. 'accept-encoding' => 'gzip, deflate, br, zstd',
  915. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  916. 'sec-fetch-dest' => 'empty',
  917. 'sec-fetch-mode' => 'cors',
  918. 'sec-fetch-site' => 'same-origin',
  919. 'accept' => '*/*',
  920. 'sec-ch-ua-mobile' => '?1',
  921. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  922. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  923. 'sec-ch-ua-platform' => '"Android"',
  924. 'host' => 'ts.shanghairongxuan.top',
  925. 'content-length' => '',
  926. 'content-type' => '',
  927. )
  928. [ info ] [ PARAM ] array (
  929. 'limit' => '15',
  930. 'ishot' => '2',
  931. )
  932. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  933. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001761s ]
  934. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  935. [ info ] [ DB ] INIT mysql
  936. [ info ] [ LOG ] INIT File
  937. ---------------------------------------------------------------
  938. [ 2025-04-23T16:22:03+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  939. [运行时间:0.080428s] [吞吐率:12.43req/s] [内存消耗:3,974.55kb] [文件加载:129]
  940. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000094s ]
  941. [ info ] [ CACHE ] INIT File
  942. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002969s ]
  943. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  944. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000635s ]
  945. [ info ] [ ROUTE ] array (
  946. 'type' => 'module',
  947. 'module' =>
  948. array (
  949. 0 => 'api',
  950. 1 => 'user',
  951. 2 => 'index',
  952. ),
  953. )
  954. [ info ] [ HEADER ] array (
  955. 'priority' => 'u=1, i',
  956. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  957. 'accept-encoding' => 'gzip, deflate, br, zstd',
  958. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  959. 'sec-fetch-dest' => 'empty',
  960. 'sec-fetch-mode' => 'cors',
  961. 'sec-fetch-site' => 'same-origin',
  962. 'accept' => '*/*',
  963. 'sec-ch-ua-mobile' => '?1',
  964. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  965. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  966. 'sec-ch-ua-platform' => '"Android"',
  967. 'host' => 'ts.shanghairongxuan.top',
  968. 'content-length' => '',
  969. 'content-type' => '',
  970. )
  971. [ info ] [ PARAM ] array (
  972. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  973. 'uid' => '1552',
  974. )
  975. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  976. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002985s ]
  977. [ info ] [ TOKEN ] INIT Mysql
  978. [ info ] [ DB ] INIT mysql
  979. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  980. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  981. [ info ] [ LOG ] INIT File
  982. ---------------------------------------------------------------
  983. [ 2025-04-23T16:22:06+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  984. [运行时间:0.090030s] [吞吐率:11.11req/s] [内存消耗:4,064.27kb] [文件加载:127]
  985. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  986. [ info ] [ CACHE ] INIT File
  987. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001752s ]
  988. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  989. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000366s ]
  990. [ info ] [ ROUTE ] array (
  991. 'type' => 'module',
  992. 'module' =>
  993. array (
  994. 0 => 'api',
  995. 1 => 'video',
  996. 2 => 'zuiju',
  997. ),
  998. )
  999. [ info ] [ HEADER ] array (
  1000. 'priority' => 'u=1, i',
  1001. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1002. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1003. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1004. 'sec-fetch-dest' => 'empty',
  1005. 'sec-fetch-mode' => 'cors',
  1006. 'sec-fetch-site' => 'same-origin',
  1007. 'accept' => '*/*',
  1008. 'sec-ch-ua-mobile' => '?1',
  1009. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1010. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1011. 'sec-ch-ua-platform' => '"Android"',
  1012. 'host' => 'ts.shanghairongxuan.top',
  1013. 'content-length' => '',
  1014. 'content-type' => '',
  1015. )
  1016. [ info ] [ PARAM ] array (
  1017. 'uid' => '1552',
  1018. )
  1019. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1020. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002533s ]
  1021. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1022. [ info ] [ DB ] INIT mysql
  1023. [ info ] [ LOG ] INIT File
  1024. ---------------------------------------------------------------
  1025. [ 2025-04-23T16:22:07+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/indexdata
  1026. [运行时间:0.103453s] [吞吐率:9.67req/s] [内存消耗:4,195.92kb] [文件加载:132]
  1027. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  1028. [ info ] [ CACHE ] INIT File
  1029. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001103s ]
  1030. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1031. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000246s ]
  1032. [ info ] [ ROUTE ] array (
  1033. 'type' => 'module',
  1034. 'module' =>
  1035. array (
  1036. 0 => 'api',
  1037. 1 => 'video',
  1038. 2 => 'indexdata',
  1039. ),
  1040. )
  1041. [ info ] [ HEADER ] array (
  1042. 'priority' => 'u=1, i',
  1043. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1044. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1045. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1046. 'sec-fetch-dest' => 'empty',
  1047. 'sec-fetch-mode' => 'cors',
  1048. 'sec-fetch-site' => 'same-origin',
  1049. 'accept' => '*/*',
  1050. 'sec-ch-ua-mobile' => '?1',
  1051. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1052. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1053. 'sec-ch-ua-platform' => '"Android"',
  1054. 'host' => 'ts.shanghairongxuan.top',
  1055. 'content-length' => '',
  1056. 'content-type' => '',
  1057. )
  1058. [ info ] [ PARAM ] array (
  1059. )
  1060. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1061. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001390s ]
  1062. [ info ] [ RUN ] app\api\controller\Video->indexdata[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1063. [ info ] [ DB ] INIT mysql
  1064. [ info ] [ LOG ] INIT File
  1065. ---------------------------------------------------------------
  1066. [ 2025-04-23T16:22:08+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/videoRecommend?page=1&uid=1552
  1067. [运行时间:0.110201s] [吞吐率:9.07req/s] [内存消耗:3,917.74kb] [文件加载:124]
  1068. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1069. [ info ] [ CACHE ] INIT File
  1070. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001404s ]
  1071. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1072. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000299s ]
  1073. [ info ] [ ROUTE ] array (
  1074. 'type' => 'module',
  1075. 'module' =>
  1076. array (
  1077. 0 => 'api',
  1078. 1 => 'video',
  1079. 2 => 'videoRecommend',
  1080. ),
  1081. )
  1082. [ info ] [ HEADER ] array (
  1083. 'priority' => 'u=1, i',
  1084. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1085. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1086. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1087. 'sec-fetch-dest' => 'empty',
  1088. 'sec-fetch-mode' => 'cors',
  1089. 'sec-fetch-site' => 'same-origin',
  1090. 'accept' => '*/*',
  1091. 'sec-ch-ua-mobile' => '?1',
  1092. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1093. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1094. 'sec-ch-ua-platform' => '"Android"',
  1095. 'host' => 'ts.shanghairongxuan.top',
  1096. 'content-length' => '',
  1097. 'content-type' => '',
  1098. )
  1099. [ info ] [ PARAM ] array (
  1100. 'page' => '1',
  1101. 'uid' => '1552',
  1102. )
  1103. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1104. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001829s ]
  1105. [ info ] [ RUN ] app\api\controller\Video->videoRecommend[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1106. [ info ] [ DB ] INIT mysql
  1107. [ info ] [ LOG ] INIT File
  1108. ---------------------------------------------------------------
  1109. [ 2025-04-23T16:22:09+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/indexdata
  1110. [运行时间:0.094246s] [吞吐率:10.61req/s] [内存消耗:4,195.92kb] [文件加载:132]
  1111. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1112. [ info ] [ CACHE ] INIT File
  1113. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001099s ]
  1114. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1115. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000215s ]
  1116. [ info ] [ ROUTE ] array (
  1117. 'type' => 'module',
  1118. 'module' =>
  1119. array (
  1120. 0 => 'api',
  1121. 1 => 'video',
  1122. 2 => 'indexdata',
  1123. ),
  1124. )
  1125. [ info ] [ HEADER ] array (
  1126. 'priority' => 'u=1, i',
  1127. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1128. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1129. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1130. 'sec-fetch-dest' => 'empty',
  1131. 'sec-fetch-mode' => 'cors',
  1132. 'sec-fetch-site' => 'same-origin',
  1133. 'accept' => '*/*',
  1134. 'sec-ch-ua-mobile' => '?1',
  1135. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1136. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1137. 'sec-ch-ua-platform' => '"Android"',
  1138. 'host' => 'ts.shanghairongxuan.top',
  1139. 'content-length' => '',
  1140. 'content-type' => '',
  1141. )
  1142. [ info ] [ PARAM ] array (
  1143. )
  1144. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1145. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001597s ]
  1146. [ info ] [ RUN ] app\api\controller\Video->indexdata[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1147. [ info ] [ DB ] INIT mysql
  1148. [ info ] [ LOG ] INIT File
  1149. ---------------------------------------------------------------
  1150. [ 2025-04-23T16:22:09+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/videoinfo?page=1&uid=1552&vid=78&mid=0&token=5ed70522-e52c-4c30-8353-2859f41dd8e9
  1151. [运行时间:0.092984s] [吞吐率:10.75req/s] [内存消耗:3,982.97kb] [文件加载:127]
  1152. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000030s ]
  1153. [ info ] [ CACHE ] INIT File
  1154. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001168s ]
  1155. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1156. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000221s ]
  1157. [ info ] [ ROUTE ] array (
  1158. 'type' => 'module',
  1159. 'module' =>
  1160. array (
  1161. 0 => 'api',
  1162. 1 => 'video',
  1163. 2 => 'videoinfo',
  1164. ),
  1165. )
  1166. [ info ] [ HEADER ] array (
  1167. 'priority' => 'u=1, i',
  1168. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1169. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1170. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1171. 'sec-fetch-dest' => 'empty',
  1172. 'sec-fetch-mode' => 'cors',
  1173. 'sec-fetch-site' => 'same-origin',
  1174. 'accept' => '*/*',
  1175. 'sec-ch-ua-mobile' => '?1',
  1176. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1177. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1178. 'sec-ch-ua-platform' => '"Android"',
  1179. 'host' => 'ts.shanghairongxuan.top',
  1180. 'content-length' => '',
  1181. 'content-type' => '',
  1182. )
  1183. [ info ] [ PARAM ] array (
  1184. 'page' => '1',
  1185. 'uid' => '1552',
  1186. 'vid' => '78',
  1187. 'mid' => '0',
  1188. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1189. )
  1190. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1191. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001363s ]
  1192. [ info ] [ TOKEN ] INIT Mysql
  1193. [ info ] [ DB ] INIT mysql
  1194. [ info ] [ RUN ] app\api\controller\Video->videoinfo[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1195. [ info ] [ LOG ] INIT File
  1196. ---------------------------------------------------------------
  1197. [ 2025-04-23T16:22:10+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/bfjl?vid=78&mid=103&uid=1552
  1198. [运行时间:0.076223s] [吞吐率:13.12req/s] [内存消耗:3,786.61kb] [文件加载:123]
  1199. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1200. [ info ] [ CACHE ] INIT File
  1201. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001199s ]
  1202. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1203. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000257s ]
  1204. [ info ] [ ROUTE ] array (
  1205. 'type' => 'module',
  1206. 'module' =>
  1207. array (
  1208. 0 => 'api',
  1209. 1 => 'video',
  1210. 2 => 'bfjl',
  1211. ),
  1212. )
  1213. [ info ] [ HEADER ] array (
  1214. 'priority' => 'u=1, i',
  1215. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1216. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1217. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1218. 'sec-fetch-dest' => 'empty',
  1219. 'sec-fetch-mode' => 'cors',
  1220. 'sec-fetch-site' => 'same-origin',
  1221. 'accept' => '*/*',
  1222. 'sec-ch-ua-mobile' => '?1',
  1223. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1224. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1225. 'sec-ch-ua-platform' => '"Android"',
  1226. 'host' => 'ts.shanghairongxuan.top',
  1227. 'content-length' => '',
  1228. 'content-type' => '',
  1229. )
  1230. [ info ] [ PARAM ] array (
  1231. 'vid' => '78',
  1232. 'mid' => '103',
  1233. 'uid' => '1552',
  1234. )
  1235. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1236. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001563s ]
  1237. [ info ] [ RUN ] app\api\controller\Video->bfjl[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1238. [ info ] [ DB ] INIT mysql
  1239. [ info ] [ LOG ] INIT File
  1240. ---------------------------------------------------------------
  1241. [ 2025-04-23T16:22:14+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/indexdata
  1242. [运行时间:0.111016s] [吞吐率:9.01req/s] [内存消耗:4,195.92kb] [文件加载:132]
  1243. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000269s ]
  1244. [ info ] [ CACHE ] INIT File
  1245. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002836s ]
  1246. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1247. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000645s ]
  1248. [ info ] [ ROUTE ] array (
  1249. 'type' => 'module',
  1250. 'module' =>
  1251. array (
  1252. 0 => 'api',
  1253. 1 => 'video',
  1254. 2 => 'indexdata',
  1255. ),
  1256. )
  1257. [ info ] [ HEADER ] array (
  1258. 'priority' => 'u=1, i',
  1259. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1260. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1261. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1262. 'sec-fetch-dest' => 'empty',
  1263. 'sec-fetch-mode' => 'cors',
  1264. 'sec-fetch-site' => 'same-origin',
  1265. 'accept' => '*/*',
  1266. 'sec-ch-ua-mobile' => '?1',
  1267. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1268. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1269. 'sec-ch-ua-platform' => '"Android"',
  1270. 'host' => 'ts.shanghairongxuan.top',
  1271. 'content-length' => '',
  1272. 'content-type' => '',
  1273. )
  1274. [ info ] [ PARAM ] array (
  1275. )
  1276. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1277. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.003777s ]
  1278. [ info ] [ RUN ] app\api\controller\Video->indexdata[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1279. [ info ] [ DB ] INIT mysql
  1280. [ info ] [ LOG ] INIT File
  1281. ---------------------------------------------------------------
  1282. [ 2025-04-23T16:22:15+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  1283. [运行时间:0.078404s] [吞吐率:12.75req/s] [内存消耗:4,172.65kb] [文件加载:132]
  1284. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  1285. [ info ] [ CACHE ] INIT File
  1286. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001241s ]
  1287. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1288. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000317s ]
  1289. [ info ] [ ROUTE ] array (
  1290. 'type' => 'module',
  1291. 'module' =>
  1292. array (
  1293. 0 => 'api',
  1294. 1 => 'video',
  1295. 2 => 'lists',
  1296. ),
  1297. )
  1298. [ info ] [ HEADER ] array (
  1299. 'priority' => 'u=1, i',
  1300. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1301. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1302. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1303. 'sec-fetch-dest' => 'empty',
  1304. 'sec-fetch-mode' => 'cors',
  1305. 'sec-fetch-site' => 'same-origin',
  1306. 'accept' => '*/*',
  1307. 'sec-ch-ua-mobile' => '?1',
  1308. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1309. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1310. 'sec-ch-ua-platform' => '"Android"',
  1311. 'host' => 'ts.shanghairongxuan.top',
  1312. 'content-length' => '',
  1313. 'content-type' => '',
  1314. )
  1315. [ info ] [ PARAM ] array (
  1316. 'limit' => '15',
  1317. 'ishot' => '2',
  1318. )
  1319. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1320. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001342s ]
  1321. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1322. [ info ] [ DB ] INIT mysql
  1323. [ info ] [ LOG ] INIT File
  1324. ---------------------------------------------------------------
  1325. [ 2025-04-23T16:22:15+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  1326. [运行时间:0.079755s] [吞吐率:12.54req/s] [内存消耗:3,974.55kb] [文件加载:129]
  1327. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  1328. [ info ] [ CACHE ] INIT File
  1329. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002430s ]
  1330. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1331. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000629s ]
  1332. [ info ] [ ROUTE ] array (
  1333. 'type' => 'module',
  1334. 'module' =>
  1335. array (
  1336. 0 => 'api',
  1337. 1 => 'user',
  1338. 2 => 'index',
  1339. ),
  1340. )
  1341. [ info ] [ HEADER ] array (
  1342. 'priority' => 'u=1, i',
  1343. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1344. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1345. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1346. 'sec-fetch-dest' => 'empty',
  1347. 'sec-fetch-mode' => 'cors',
  1348. 'sec-fetch-site' => 'same-origin',
  1349. 'accept' => '*/*',
  1350. 'sec-ch-ua-mobile' => '?1',
  1351. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1352. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1353. 'sec-ch-ua-platform' => '"Android"',
  1354. 'host' => 'ts.shanghairongxuan.top',
  1355. 'content-length' => '',
  1356. 'content-type' => '',
  1357. )
  1358. [ info ] [ PARAM ] array (
  1359. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1360. 'uid' => '1552',
  1361. )
  1362. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1363. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002520s ]
  1364. [ info ] [ TOKEN ] INIT Mysql
  1365. [ info ] [ DB ] INIT mysql
  1366. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1367. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1368. [ info ] [ LOG ] INIT File
  1369. ---------------------------------------------------------------
  1370. [ 2025-04-23T16:22:16+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  1371. [运行时间:0.068524s] [吞吐率:14.59req/s] [内存消耗:3,974.55kb] [文件加载:129]
  1372. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
  1373. [ info ] [ CACHE ] INIT File
  1374. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001074s ]
  1375. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1376. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000214s ]
  1377. [ info ] [ ROUTE ] array (
  1378. 'type' => 'module',
  1379. 'module' =>
  1380. array (
  1381. 0 => 'api',
  1382. 1 => 'user',
  1383. 2 => 'index',
  1384. ),
  1385. )
  1386. [ info ] [ HEADER ] array (
  1387. 'priority' => 'u=1, i',
  1388. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1389. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1390. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1391. 'sec-fetch-dest' => 'empty',
  1392. 'sec-fetch-mode' => 'cors',
  1393. 'sec-fetch-site' => 'same-origin',
  1394. 'accept' => '*/*',
  1395. 'sec-ch-ua-mobile' => '?1',
  1396. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1397. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1398. 'sec-ch-ua-platform' => '"Android"',
  1399. 'host' => 'ts.shanghairongxuan.top',
  1400. 'content-length' => '',
  1401. 'content-type' => '',
  1402. )
  1403. [ info ] [ PARAM ] array (
  1404. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1405. 'uid' => '1552',
  1406. )
  1407. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1408. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001220s ]
  1409. [ info ] [ TOKEN ] INIT Mysql
  1410. [ info ] [ DB ] INIT mysql
  1411. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1412. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1413. [ info ] [ LOG ] INIT File
  1414. ---------------------------------------------------------------
  1415. [ 2025-04-23T16:22:20+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/paywx/paywxh5?iswx=&token=5ed70522-e52c-4c30-8353-2859f41dd8e9&total=0.01&tdnum=901
  1416. [运行时间:0.093053s] [吞吐率:10.75req/s] [内存消耗:3,775.34kb] [文件加载:127]
  1417. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
  1418. [ info ] [ CACHE ] INIT File
  1419. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001516s ]
  1420. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1421. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000309s ]
  1422. [ info ] [ ROUTE ] array (
  1423. 'type' => 'module',
  1424. 'module' =>
  1425. array (
  1426. 0 => 'api',
  1427. 1 => 'paywx',
  1428. 2 => 'paywxh5',
  1429. ),
  1430. )
  1431. [ info ] [ HEADER ] array (
  1432. 'priority' => 'u=1, i',
  1433. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1434. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1435. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1436. 'sec-fetch-dest' => 'empty',
  1437. 'sec-fetch-mode' => 'cors',
  1438. 'sec-fetch-site' => 'same-origin',
  1439. 'accept' => '*/*',
  1440. 'sec-ch-ua-mobile' => '?1',
  1441. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1442. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1443. 'sec-ch-ua-platform' => '"Android"',
  1444. 'host' => 'ts.shanghairongxuan.top',
  1445. 'content-length' => '',
  1446. 'content-type' => '',
  1447. )
  1448. [ info ] [ PARAM ] array (
  1449. 'iswx' => '',
  1450. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1451. 'total' => '0.01',
  1452. 'tdnum' => '901',
  1453. )
  1454. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1455. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001748s ]
  1456. [ info ] [ TOKEN ] INIT Mysql
  1457. [ info ] [ DB ] INIT mysql
  1458. [ info ] [ RUN ] app\api\controller\Paywx->paywxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Paywx.php ]
  1459. [ info ] [ LOG ] INIT File
  1460. ---------------------------------------------------------------
  1461. [ 2025-04-23T16:22:20+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//index/paydsf/wxh5?out_trade_no=2504230482061
  1462. [运行时间:0.393461s] [吞吐率:2.54req/s] [内存消耗:3,938.70kb] [文件加载:126]
  1463. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  1464. [ info ] [ CACHE ] INIT File
  1465. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001596s ]
  1466. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1467. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000373s ]
  1468. [ info ] [ ROUTE ] array (
  1469. 'type' => 'module',
  1470. 'module' =>
  1471. array (
  1472. 0 => 'index',
  1473. 1 => 'paydsf',
  1474. 2 => 'wxh5',
  1475. ),
  1476. )
  1477. [ info ] [ HEADER ] array (
  1478. 'priority' => 'u=0, i',
  1479. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1480. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1481. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1482. 'sec-fetch-dest' => 'document',
  1483. 'sec-fetch-user' => '?1',
  1484. 'sec-fetch-mode' => 'navigate',
  1485. 'sec-fetch-site' => 'same-origin',
  1486. '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.7',
  1487. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1488. 'upgrade-insecure-requests' => '1',
  1489. 'sec-ch-ua-platform' => '"Android"',
  1490. 'sec-ch-ua-mobile' => '?1',
  1491. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1492. 'host' => 'ts.shanghairongxuan.top',
  1493. 'content-length' => '',
  1494. 'content-type' => '',
  1495. )
  1496. [ info ] [ PARAM ] array (
  1497. 'out_trade_no' => '2504230482061',
  1498. )
  1499. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  1500. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002350s ]
  1501. [ info ] [ RUN ] app\index\controller\Paydsf->wxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Paydsf.php ]
  1502. [ info ] [ DB ] INIT mysql
  1503. [ info ] [ LOG ] INIT File
  1504. ---------------------------------------------------------------
  1505. [ 2025-04-23T16:22:22+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  1506. [运行时间:0.056498s] [吞吐率:17.70req/s] [内存消耗:3,974.55kb] [文件加载:129]
  1507. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  1508. [ info ] [ CACHE ] INIT File
  1509. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001239s ]
  1510. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1511. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000217s ]
  1512. [ info ] [ ROUTE ] array (
  1513. 'type' => 'module',
  1514. 'module' =>
  1515. array (
  1516. 0 => 'api',
  1517. 1 => 'user',
  1518. 2 => 'index',
  1519. ),
  1520. )
  1521. [ info ] [ HEADER ] array (
  1522. 'priority' => 'u=1, i',
  1523. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1524. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1525. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1526. 'sec-fetch-dest' => 'empty',
  1527. 'sec-fetch-mode' => 'cors',
  1528. 'sec-fetch-site' => 'same-origin',
  1529. 'accept' => '*/*',
  1530. 'sec-ch-ua-mobile' => '?1',
  1531. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1532. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1533. 'sec-ch-ua-platform' => '"Android"',
  1534. 'host' => 'ts.shanghairongxuan.top',
  1535. 'content-length' => '',
  1536. 'content-type' => '',
  1537. )
  1538. [ info ] [ PARAM ] array (
  1539. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1540. 'uid' => '1552',
  1541. )
  1542. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1543. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001582s ]
  1544. [ info ] [ TOKEN ] INIT Mysql
  1545. [ info ] [ DB ] INIT mysql
  1546. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1547. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1548. [ info ] [ LOG ] INIT File
  1549. ---------------------------------------------------------------
  1550. [ 2025-04-23T16:22:27+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/usermoneyinfo?limit=10&token=5ed70522-e52c-4c30-8353-2859f41dd8e9
  1551. [运行时间:0.072746s] [吞吐率:13.75req/s] [内存消耗:3,983.61kb] [文件加载:129]
  1552. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
  1553. [ info ] [ CACHE ] INIT File
  1554. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001182s ]
  1555. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1556. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000201s ]
  1557. [ info ] [ ROUTE ] array (
  1558. 'type' => 'module',
  1559. 'module' =>
  1560. array (
  1561. 0 => 'api',
  1562. 1 => 'user',
  1563. 2 => 'usermoneyinfo',
  1564. ),
  1565. )
  1566. [ info ] [ HEADER ] array (
  1567. 'priority' => 'u=1, i',
  1568. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1569. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1570. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1571. 'sec-fetch-dest' => 'empty',
  1572. 'sec-fetch-mode' => 'cors',
  1573. 'sec-fetch-site' => 'same-origin',
  1574. 'accept' => '*/*',
  1575. 'sec-ch-ua-mobile' => '?1',
  1576. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1577. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1578. 'sec-ch-ua-platform' => '"Android"',
  1579. 'host' => 'ts.shanghairongxuan.top',
  1580. 'content-length' => '',
  1581. 'content-type' => '',
  1582. )
  1583. [ info ] [ PARAM ] array (
  1584. 'limit' => '10',
  1585. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1586. )
  1587. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1588. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001303s ]
  1589. [ info ] [ TOKEN ] INIT Mysql
  1590. [ info ] [ DB ] INIT mysql
  1591. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1592. [ info ] [ RUN ] app\api\controller\User->usermoneyinfo[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1593. [ info ] [ LOG ] INIT File
  1594. ---------------------------------------------------------------
  1595. [ 2025-04-23T16:41:29+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  1596. [运行时间:0.078463s] [吞吐率:12.74req/s] [内存消耗:3,974.55kb] [文件加载:129]
  1597. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000070s ]
  1598. [ info ] [ CACHE ] INIT File
  1599. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001248s ]
  1600. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1601. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000238s ]
  1602. [ info ] [ ROUTE ] array (
  1603. 'type' => 'module',
  1604. 'module' =>
  1605. array (
  1606. 0 => 'api',
  1607. 1 => 'user',
  1608. 2 => 'index',
  1609. ),
  1610. )
  1611. [ info ] [ HEADER ] array (
  1612. 'priority' => 'u=1, i',
  1613. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1614. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1615. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1616. 'sec-fetch-dest' => 'empty',
  1617. 'sec-fetch-mode' => 'cors',
  1618. 'sec-fetch-site' => 'same-origin',
  1619. 'accept' => '*/*',
  1620. 'sec-ch-ua-mobile' => '?1',
  1621. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1622. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1623. 'sec-ch-ua-platform' => '"Android"',
  1624. 'host' => 'ts.shanghairongxuan.top',
  1625. 'content-length' => '',
  1626. 'content-type' => '',
  1627. )
  1628. [ info ] [ PARAM ] array (
  1629. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1630. 'uid' => '1552',
  1631. )
  1632. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1633. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001474s ]
  1634. [ info ] [ TOKEN ] INIT Mysql
  1635. [ info ] [ DB ] INIT mysql
  1636. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1637. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1638. [ info ] [ LOG ] INIT File
  1639. ---------------------------------------------------------------
  1640. [ 2025-04-23T16:41:31+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/paywx/paywxh5?iswx=&token=5ed70522-e52c-4c30-8353-2859f41dd8e9&total=0.01&tdnum=901
  1641. [运行时间:0.083341s] [吞吐率:12.00req/s] [内存消耗:3,775.34kb] [文件加载:127]
  1642. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  1643. [ info ] [ CACHE ] INIT File
  1644. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001735s ]
  1645. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1646. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000363s ]
  1647. [ info ] [ ROUTE ] array (
  1648. 'type' => 'module',
  1649. 'module' =>
  1650. array (
  1651. 0 => 'api',
  1652. 1 => 'paywx',
  1653. 2 => 'paywxh5',
  1654. ),
  1655. )
  1656. [ info ] [ HEADER ] array (
  1657. 'priority' => 'u=1, i',
  1658. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1659. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1660. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1661. 'sec-fetch-dest' => 'empty',
  1662. 'sec-fetch-mode' => 'cors',
  1663. 'sec-fetch-site' => 'same-origin',
  1664. 'accept' => '*/*',
  1665. 'sec-ch-ua-mobile' => '?1',
  1666. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1667. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1668. 'sec-ch-ua-platform' => '"Android"',
  1669. 'host' => 'ts.shanghairongxuan.top',
  1670. 'content-length' => '',
  1671. 'content-type' => '',
  1672. )
  1673. [ info ] [ PARAM ] array (
  1674. 'iswx' => '',
  1675. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1676. 'total' => '0.01',
  1677. 'tdnum' => '901',
  1678. )
  1679. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1680. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002261s ]
  1681. [ info ] [ TOKEN ] INIT Mysql
  1682. [ info ] [ DB ] INIT mysql
  1683. [ info ] [ RUN ] app\api\controller\Paywx->paywxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Paywx.php ]
  1684. [ info ] [ LOG ] INIT File
  1685. ---------------------------------------------------------------
  1686. [ 2025-04-23T16:41:31+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//index/paydsf/wxh5?out_trade_no=2504230465517
  1687. [运行时间:0.379437s] [吞吐率:2.64req/s] [内存消耗:3,938.70kb] [文件加载:126]
  1688. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  1689. [ info ] [ CACHE ] INIT File
  1690. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001340s ]
  1691. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1692. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000348s ]
  1693. [ info ] [ ROUTE ] array (
  1694. 'type' => 'module',
  1695. 'module' =>
  1696. array (
  1697. 0 => 'index',
  1698. 1 => 'paydsf',
  1699. 2 => 'wxh5',
  1700. ),
  1701. )
  1702. [ info ] [ HEADER ] array (
  1703. 'priority' => 'u=0, i',
  1704. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1705. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1706. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1707. 'sec-fetch-dest' => 'document',
  1708. 'sec-fetch-user' => '?1',
  1709. 'sec-fetch-mode' => 'navigate',
  1710. 'sec-fetch-site' => 'same-origin',
  1711. '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.7',
  1712. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1713. 'upgrade-insecure-requests' => '1',
  1714. 'sec-ch-ua-platform' => '"Android"',
  1715. 'sec-ch-ua-mobile' => '?1',
  1716. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1717. 'host' => 'ts.shanghairongxuan.top',
  1718. 'content-length' => '',
  1719. 'content-type' => '',
  1720. )
  1721. [ info ] [ PARAM ] array (
  1722. 'out_trade_no' => '2504230465517',
  1723. )
  1724. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  1725. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001957s ]
  1726. [ info ] [ RUN ] app\index\controller\Paydsf->wxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Paydsf.php ]
  1727. [ info ] [ DB ] INIT mysql
  1728. [ info ] [ LOG ] INIT File
  1729. ---------------------------------------------------------------
  1730. [ 2025-04-23T16:41:45+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  1731. [运行时间:0.069028s] [吞吐率:14.49req/s] [内存消耗:3,974.55kb] [文件加载:129]
  1732. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000037s ]
  1733. [ info ] [ CACHE ] INIT File
  1734. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001473s ]
  1735. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1736. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000258s ]
  1737. [ info ] [ ROUTE ] array (
  1738. 'type' => 'module',
  1739. 'module' =>
  1740. array (
  1741. 0 => 'api',
  1742. 1 => 'user',
  1743. 2 => 'index',
  1744. ),
  1745. )
  1746. [ info ] [ HEADER ] array (
  1747. 'priority' => 'u=1, i',
  1748. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1749. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1750. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1751. 'sec-fetch-dest' => 'empty',
  1752. 'sec-fetch-mode' => 'cors',
  1753. 'sec-fetch-site' => 'same-origin',
  1754. 'accept' => '*/*',
  1755. 'sec-ch-ua-mobile' => '?1',
  1756. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1757. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1758. 'sec-ch-ua-platform' => '"Android"',
  1759. 'host' => 'ts.shanghairongxuan.top',
  1760. 'content-length' => '',
  1761. 'content-type' => '',
  1762. )
  1763. [ info ] [ PARAM ] array (
  1764. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1765. 'uid' => '1552',
  1766. )
  1767. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1768. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001726s ]
  1769. [ info ] [ TOKEN ] INIT Mysql
  1770. [ info ] [ DB ] INIT mysql
  1771. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1772. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1773. [ info ] [ LOG ] INIT File
  1774. ---------------------------------------------------------------
  1775. [ 2025-04-23T16:41:48+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  1776. [运行时间:0.079745s] [吞吐率:12.54req/s] [内存消耗:3,974.55kb] [文件加载:129]
  1777. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000080s ]
  1778. [ info ] [ CACHE ] INIT File
  1779. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002990s ]
  1780. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1781. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000712s ]
  1782. [ info ] [ ROUTE ] array (
  1783. 'type' => 'module',
  1784. 'module' =>
  1785. array (
  1786. 0 => 'api',
  1787. 1 => 'user',
  1788. 2 => 'index',
  1789. ),
  1790. )
  1791. [ info ] [ HEADER ] array (
  1792. 'priority' => 'u=1, i',
  1793. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1794. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1795. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1796. 'sec-fetch-dest' => 'empty',
  1797. 'sec-fetch-mode' => 'cors',
  1798. 'sec-fetch-site' => 'same-origin',
  1799. 'accept' => '*/*',
  1800. 'sec-ch-ua-mobile' => '?1',
  1801. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1802. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1803. 'sec-ch-ua-platform' => '"Android"',
  1804. 'host' => 'ts.shanghairongxuan.top',
  1805. 'content-length' => '',
  1806. 'content-type' => '',
  1807. )
  1808. [ info ] [ PARAM ] array (
  1809. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1810. 'uid' => '1552',
  1811. )
  1812. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1813. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002780s ]
  1814. [ info ] [ TOKEN ] INIT Mysql
  1815. [ info ] [ DB ] INIT mysql
  1816. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1817. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1818. [ info ] [ LOG ] INIT File
  1819. ---------------------------------------------------------------
  1820. [ 2025-04-23T16:41:48+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  1821. [运行时间:0.080727s] [吞吐率:12.39req/s] [内存消耗:4,172.65kb] [文件加载:132]
  1822. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  1823. [ info ] [ CACHE ] INIT File
  1824. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001271s ]
  1825. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1826. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000213s ]
  1827. [ info ] [ ROUTE ] array (
  1828. 'type' => 'module',
  1829. 'module' =>
  1830. array (
  1831. 0 => 'api',
  1832. 1 => 'video',
  1833. 2 => 'lists',
  1834. ),
  1835. )
  1836. [ info ] [ HEADER ] array (
  1837. 'priority' => 'u=1, i',
  1838. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1839. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1840. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1841. 'sec-fetch-dest' => 'empty',
  1842. 'sec-fetch-mode' => 'cors',
  1843. 'sec-fetch-site' => 'same-origin',
  1844. 'accept' => '*/*',
  1845. 'sec-ch-ua-mobile' => '?1',
  1846. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1847. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1848. 'sec-ch-ua-platform' => '"Android"',
  1849. 'host' => 'ts.shanghairongxuan.top',
  1850. 'content-length' => '',
  1851. 'content-type' => '',
  1852. )
  1853. [ info ] [ PARAM ] array (
  1854. 'limit' => '15',
  1855. 'ishot' => '2',
  1856. )
  1857. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1858. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001433s ]
  1859. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1860. [ info ] [ DB ] INIT mysql
  1861. [ info ] [ LOG ] INIT File
  1862. ---------------------------------------------------------------
  1863. [ 2025-04-23T16:41:51+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  1864. [运行时间:0.078414s] [吞吐率:12.75req/s] [内存消耗:3,974.55kb] [文件加载:129]
  1865. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000071s ]
  1866. [ info ] [ CACHE ] INIT File
  1867. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001649s ]
  1868. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1869. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000327s ]
  1870. [ info ] [ ROUTE ] array (
  1871. 'type' => 'module',
  1872. 'module' =>
  1873. array (
  1874. 0 => 'api',
  1875. 1 => 'user',
  1876. 2 => 'index',
  1877. ),
  1878. )
  1879. [ info ] [ HEADER ] array (
  1880. 'priority' => 'u=1, i',
  1881. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1882. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1883. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1884. 'sec-fetch-dest' => 'empty',
  1885. 'sec-fetch-mode' => 'cors',
  1886. 'sec-fetch-site' => 'same-origin',
  1887. 'accept' => '*/*',
  1888. 'sec-ch-ua-mobile' => '?1',
  1889. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1890. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1891. 'sec-ch-ua-platform' => '"Android"',
  1892. 'host' => 'ts.shanghairongxuan.top',
  1893. 'content-length' => '',
  1894. 'content-type' => '',
  1895. )
  1896. [ info ] [ PARAM ] array (
  1897. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1898. 'uid' => '1552',
  1899. )
  1900. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1901. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002272s ]
  1902. [ info ] [ TOKEN ] INIT Mysql
  1903. [ info ] [ DB ] INIT mysql
  1904. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1905. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1906. [ info ] [ LOG ] INIT File
  1907. ---------------------------------------------------------------
  1908. [ 2025-04-23T16:41:51+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  1909. [运行时间:0.086141s] [吞吐率:11.61req/s] [内存消耗:4,172.65kb] [文件加载:132]
  1910. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  1911. [ info ] [ CACHE ] INIT File
  1912. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001129s ]
  1913. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1914. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000228s ]
  1915. [ info ] [ ROUTE ] array (
  1916. 'type' => 'module',
  1917. 'module' =>
  1918. array (
  1919. 0 => 'api',
  1920. 1 => 'video',
  1921. 2 => 'lists',
  1922. ),
  1923. )
  1924. [ info ] [ HEADER ] array (
  1925. 'priority' => 'u=1, i',
  1926. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1927. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1928. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1929. 'sec-fetch-dest' => 'empty',
  1930. 'sec-fetch-mode' => 'cors',
  1931. 'sec-fetch-site' => 'same-origin',
  1932. 'accept' => '*/*',
  1933. 'sec-ch-ua-mobile' => '?1',
  1934. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1935. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1936. 'sec-ch-ua-platform' => '"Android"',
  1937. 'host' => 'ts.shanghairongxuan.top',
  1938. 'content-length' => '',
  1939. 'content-type' => '',
  1940. )
  1941. [ info ] [ PARAM ] array (
  1942. 'limit' => '15',
  1943. 'ishot' => '2',
  1944. )
  1945. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1946. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001413s ]
  1947. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1948. [ info ] [ DB ] INIT mysql
  1949. [ info ] [ LOG ] INIT File
  1950. ---------------------------------------------------------------
  1951. [ 2025-04-23T16:41:54+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/mytuandui?token=5ed70522-e52c-4c30-8353-2859f41dd8e9
  1952. [运行时间:0.060104s] [吞吐率:16.64req/s] [内存消耗:3,956.52kb] [文件加载:128]
  1953. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  1954. [ info ] [ CACHE ] INIT File
  1955. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001184s ]
  1956. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1957. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000232s ]
  1958. [ info ] [ ROUTE ] array (
  1959. 'type' => 'module',
  1960. 'module' =>
  1961. array (
  1962. 0 => 'api',
  1963. 1 => 'user',
  1964. 2 => 'mytuandui',
  1965. ),
  1966. )
  1967. [ info ] [ HEADER ] array (
  1968. 'priority' => 'u=1, i',
  1969. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1970. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1971. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1972. 'sec-fetch-dest' => 'empty',
  1973. 'sec-fetch-mode' => 'cors',
  1974. 'sec-fetch-site' => 'same-origin',
  1975. 'accept' => '*/*',
  1976. 'sec-ch-ua-mobile' => '?1',
  1977. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  1978. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  1979. 'sec-ch-ua-platform' => '"Android"',
  1980. 'host' => 'ts.shanghairongxuan.top',
  1981. 'content-length' => '',
  1982. 'content-type' => '',
  1983. )
  1984. [ info ] [ PARAM ] array (
  1985. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  1986. )
  1987. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1988. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001518s ]
  1989. [ info ] [ TOKEN ] INIT Mysql
  1990. [ info ] [ DB ] INIT mysql
  1991. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1992. [ info ] [ RUN ] app\api\controller\User->mytuandui[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1993. [ info ] [ LOG ] INIT File
  1994. ---------------------------------------------------------------
  1995. [ 2025-04-23T16:41:55+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  1996. [运行时间:0.093136s] [吞吐率:10.74req/s] [内存消耗:4,172.65kb] [文件加载:132]
  1997. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000033s ]
  1998. [ info ] [ CACHE ] INIT File
  1999. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001112s ]
  2000. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2001. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000218s ]
  2002. [ info ] [ ROUTE ] array (
  2003. 'type' => 'module',
  2004. 'module' =>
  2005. array (
  2006. 0 => 'api',
  2007. 1 => 'video',
  2008. 2 => 'lists',
  2009. ),
  2010. )
  2011. [ info ] [ HEADER ] array (
  2012. 'priority' => 'u=1, i',
  2013. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2014. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2015. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2016. 'sec-fetch-dest' => 'empty',
  2017. 'sec-fetch-mode' => 'cors',
  2018. 'sec-fetch-site' => 'same-origin',
  2019. 'accept' => '*/*',
  2020. 'sec-ch-ua-mobile' => '?1',
  2021. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2022. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2023. 'sec-ch-ua-platform' => '"Android"',
  2024. 'host' => 'ts.shanghairongxuan.top',
  2025. 'content-length' => '',
  2026. 'content-type' => '',
  2027. )
  2028. [ info ] [ PARAM ] array (
  2029. 'limit' => '15',
  2030. 'ishot' => '2',
  2031. )
  2032. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2033. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001430s ]
  2034. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2035. [ info ] [ DB ] INIT mysql
  2036. [ info ] [ LOG ] INIT File
  2037. ---------------------------------------------------------------
  2038. [ 2025-04-23T16:41:55+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  2039. [运行时间:0.093516s] [吞吐率:10.69req/s] [内存消耗:3,974.55kb] [文件加载:129]
  2040. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2041. [ info ] [ CACHE ] INIT File
  2042. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001801s ]
  2043. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2044. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000351s ]
  2045. [ info ] [ ROUTE ] array (
  2046. 'type' => 'module',
  2047. 'module' =>
  2048. array (
  2049. 0 => 'api',
  2050. 1 => 'user',
  2051. 2 => 'index',
  2052. ),
  2053. )
  2054. [ info ] [ HEADER ] array (
  2055. 'priority' => 'u=1, i',
  2056. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2057. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2058. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2059. 'sec-fetch-dest' => 'empty',
  2060. 'sec-fetch-mode' => 'cors',
  2061. 'sec-fetch-site' => 'same-origin',
  2062. 'accept' => '*/*',
  2063. 'sec-ch-ua-mobile' => '?1',
  2064. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2065. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2066. 'sec-ch-ua-platform' => '"Android"',
  2067. 'host' => 'ts.shanghairongxuan.top',
  2068. 'content-length' => '',
  2069. 'content-type' => '',
  2070. )
  2071. [ info ] [ PARAM ] array (
  2072. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  2073. 'uid' => '1552',
  2074. )
  2075. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2076. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002014s ]
  2077. [ info ] [ TOKEN ] INIT Mysql
  2078. [ info ] [ DB ] INIT mysql
  2079. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2080. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2081. [ info ] [ LOG ] INIT File
  2082. ---------------------------------------------------------------
  2083. [ 2025-04-23T16:41:56+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/userfxinfo?limit=10&token=5ed70522-e52c-4c30-8353-2859f41dd8e9
  2084. [运行时间:0.070309s] [吞吐率:14.22req/s] [内存消耗:3,981.62kb] [文件加载:129]
  2085. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2086. [ info ] [ CACHE ] INIT File
  2087. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001532s ]
  2088. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2089. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000249s ]
  2090. [ info ] [ ROUTE ] array (
  2091. 'type' => 'module',
  2092. 'module' =>
  2093. array (
  2094. 0 => 'api',
  2095. 1 => 'user',
  2096. 2 => 'userfxinfo',
  2097. ),
  2098. )
  2099. [ info ] [ HEADER ] array (
  2100. 'priority' => 'u=1, i',
  2101. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2102. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2103. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2104. 'sec-fetch-dest' => 'empty',
  2105. 'sec-fetch-mode' => 'cors',
  2106. 'sec-fetch-site' => 'same-origin',
  2107. 'accept' => '*/*',
  2108. 'sec-ch-ua-mobile' => '?1',
  2109. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2110. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2111. 'sec-ch-ua-platform' => '"Android"',
  2112. 'host' => 'ts.shanghairongxuan.top',
  2113. 'content-length' => '',
  2114. 'content-type' => '',
  2115. )
  2116. [ info ] [ PARAM ] array (
  2117. 'limit' => '10',
  2118. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  2119. )
  2120. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2121. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001741s ]
  2122. [ info ] [ TOKEN ] INIT Mysql
  2123. [ info ] [ DB ] INIT mysql
  2124. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2125. [ info ] [ RUN ] app\api\controller\User->userfxinfo[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2126. [ info ] [ LOG ] INIT File
  2127. ---------------------------------------------------------------
  2128. [ 2025-04-23T16:42:00+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  2129. [运行时间:0.072639s] [吞吐率:13.77req/s] [内存消耗:3,974.55kb] [文件加载:129]
  2130. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000068s ]
  2131. [ info ] [ CACHE ] INIT File
  2132. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001725s ]
  2133. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2134. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000319s ]
  2135. [ info ] [ ROUTE ] array (
  2136. 'type' => 'module',
  2137. 'module' =>
  2138. array (
  2139. 0 => 'api',
  2140. 1 => 'user',
  2141. 2 => 'index',
  2142. ),
  2143. )
  2144. [ info ] [ HEADER ] array (
  2145. 'priority' => 'u=1, i',
  2146. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2147. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2148. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2149. 'sec-fetch-dest' => 'empty',
  2150. 'sec-fetch-mode' => 'cors',
  2151. 'sec-fetch-site' => 'same-origin',
  2152. 'accept' => '*/*',
  2153. 'sec-ch-ua-mobile' => '?1',
  2154. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2155. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2156. 'sec-ch-ua-platform' => '"Android"',
  2157. 'host' => 'ts.shanghairongxuan.top',
  2158. 'content-length' => '',
  2159. 'content-type' => '',
  2160. )
  2161. [ info ] [ PARAM ] array (
  2162. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  2163. 'uid' => '1552',
  2164. )
  2165. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2166. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002326s ]
  2167. [ info ] [ TOKEN ] INIT Mysql
  2168. [ info ] [ DB ] INIT mysql
  2169. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2170. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2171. [ info ] [ LOG ] INIT File
  2172. ---------------------------------------------------------------
  2173. [ 2025-04-23T16:42:00+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  2174. [运行时间:0.082225s] [吞吐率:12.16req/s] [内存消耗:4,172.65kb] [文件加载:132]
  2175. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000036s ]
  2176. [ info ] [ CACHE ] INIT File
  2177. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001044s ]
  2178. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2179. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000215s ]
  2180. [ info ] [ ROUTE ] array (
  2181. 'type' => 'module',
  2182. 'module' =>
  2183. array (
  2184. 0 => 'api',
  2185. 1 => 'video',
  2186. 2 => 'lists',
  2187. ),
  2188. )
  2189. [ info ] [ HEADER ] array (
  2190. 'priority' => 'u=1, i',
  2191. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2192. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2193. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2194. 'sec-fetch-dest' => 'empty',
  2195. 'sec-fetch-mode' => 'cors',
  2196. 'sec-fetch-site' => 'same-origin',
  2197. 'accept' => '*/*',
  2198. 'sec-ch-ua-mobile' => '?1',
  2199. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2200. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2201. 'sec-ch-ua-platform' => '"Android"',
  2202. 'host' => 'ts.shanghairongxuan.top',
  2203. 'content-length' => '',
  2204. 'content-type' => '',
  2205. )
  2206. [ info ] [ PARAM ] array (
  2207. 'limit' => '15',
  2208. 'ishot' => '2',
  2209. )
  2210. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2211. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001489s ]
  2212. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2213. [ info ] [ DB ] INIT mysql
  2214. [ info ] [ LOG ] INIT File
  2215. ---------------------------------------------------------------
  2216. [ 2025-04-23T16:42:04+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  2217. [运行时间:0.066197s] [吞吐率:15.11req/s] [内存消耗:3,974.55kb] [文件加载:129]
  2218. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  2219. [ info ] [ CACHE ] INIT File
  2220. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001191s ]
  2221. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2222. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000227s ]
  2223. [ info ] [ ROUTE ] array (
  2224. 'type' => 'module',
  2225. 'module' =>
  2226. array (
  2227. 0 => 'api',
  2228. 1 => 'user',
  2229. 2 => 'index',
  2230. ),
  2231. )
  2232. [ info ] [ HEADER ] array (
  2233. 'priority' => 'u=1, i',
  2234. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2235. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2236. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2237. 'sec-fetch-dest' => 'empty',
  2238. 'sec-fetch-mode' => 'cors',
  2239. 'sec-fetch-site' => 'same-origin',
  2240. 'accept' => '*/*',
  2241. 'sec-ch-ua-mobile' => '?1',
  2242. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2243. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2244. 'sec-ch-ua-platform' => '"Android"',
  2245. 'host' => 'ts.shanghairongxuan.top',
  2246. 'content-length' => '',
  2247. 'content-type' => '',
  2248. )
  2249. [ info ] [ PARAM ] array (
  2250. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  2251. 'uid' => '1552',
  2252. )
  2253. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2254. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001316s ]
  2255. [ info ] [ TOKEN ] INIT Mysql
  2256. [ info ] [ DB ] INIT mysql
  2257. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2258. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2259. [ info ] [ LOG ] INIT File
  2260. ---------------------------------------------------------------
  2261. [ 2025-04-23T16:42:04+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  2262. [运行时间:0.098073s] [吞吐率:10.20req/s] [内存消耗:4,172.65kb] [文件加载:132]
  2263. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000078s ]
  2264. [ info ] [ CACHE ] INIT File
  2265. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001837s ]
  2266. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2267. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000326s ]
  2268. [ info ] [ ROUTE ] array (
  2269. 'type' => 'module',
  2270. 'module' =>
  2271. array (
  2272. 0 => 'api',
  2273. 1 => 'video',
  2274. 2 => 'lists',
  2275. ),
  2276. )
  2277. [ info ] [ HEADER ] array (
  2278. 'priority' => 'u=1, i',
  2279. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2280. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2281. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2282. 'sec-fetch-dest' => 'empty',
  2283. 'sec-fetch-mode' => 'cors',
  2284. 'sec-fetch-site' => 'same-origin',
  2285. 'accept' => '*/*',
  2286. 'sec-ch-ua-mobile' => '?1',
  2287. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2288. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2289. 'sec-ch-ua-platform' => '"Android"',
  2290. 'host' => 'ts.shanghairongxuan.top',
  2291. 'content-length' => '',
  2292. 'content-type' => '',
  2293. )
  2294. [ info ] [ PARAM ] array (
  2295. 'limit' => '15',
  2296. 'ishot' => '2',
  2297. )
  2298. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2299. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001836s ]
  2300. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2301. [ info ] [ DB ] INIT mysql
  2302. [ info ] [ LOG ] INIT File
  2303. ---------------------------------------------------------------
  2304. [ 2025-04-23T16:42:06+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  2305. [运行时间:0.084400s] [吞吐率:11.85req/s] [内存消耗:4,064.27kb] [文件加载:127]
  2306. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  2307. [ info ] [ CACHE ] INIT File
  2308. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001406s ]
  2309. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2310. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000211s ]
  2311. [ info ] [ ROUTE ] array (
  2312. 'type' => 'module',
  2313. 'module' =>
  2314. array (
  2315. 0 => 'api',
  2316. 1 => 'video',
  2317. 2 => 'zuiju',
  2318. ),
  2319. )
  2320. [ info ] [ HEADER ] array (
  2321. 'priority' => 'u=1, i',
  2322. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2323. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2324. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2325. 'sec-fetch-dest' => 'empty',
  2326. 'sec-fetch-mode' => 'cors',
  2327. 'sec-fetch-site' => 'same-origin',
  2328. 'accept' => '*/*',
  2329. 'sec-ch-ua-mobile' => '?1',
  2330. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2331. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2332. 'sec-ch-ua-platform' => '"Android"',
  2333. 'host' => 'ts.shanghairongxuan.top',
  2334. 'content-length' => '',
  2335. 'content-type' => '',
  2336. )
  2337. [ info ] [ PARAM ] array (
  2338. 'uid' => '1552',
  2339. )
  2340. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2341. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001635s ]
  2342. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2343. [ info ] [ DB ] INIT mysql
  2344. [ info ] [ LOG ] INIT File
  2345. ---------------------------------------------------------------
  2346. [ 2025-04-23T16:42:07+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/qingdao?tdsy=100&token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  2347. [运行时间:0.095686s] [吞吐率:10.45req/s] [内存消耗:3,947.44kb] [文件加载:129]
  2348. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  2349. [ info ] [ CACHE ] INIT File
  2350. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001110s ]
  2351. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2352. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000254s ]
  2353. [ info ] [ ROUTE ] array (
  2354. 'type' => 'module',
  2355. 'module' =>
  2356. array (
  2357. 0 => 'api',
  2358. 1 => 'user',
  2359. 2 => 'qingdao',
  2360. ),
  2361. )
  2362. [ info ] [ HEADER ] array (
  2363. 'priority' => 'u=1, i',
  2364. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2365. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2366. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2367. 'sec-fetch-dest' => 'empty',
  2368. 'sec-fetch-mode' => 'cors',
  2369. 'sec-fetch-site' => 'same-origin',
  2370. 'accept' => '*/*',
  2371. 'sec-ch-ua-mobile' => '?1',
  2372. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2373. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2374. 'sec-ch-ua-platform' => '"Android"',
  2375. 'host' => 'ts.shanghairongxuan.top',
  2376. 'content-length' => '',
  2377. 'content-type' => '',
  2378. )
  2379. [ info ] [ PARAM ] array (
  2380. 'tdsy' => '100',
  2381. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  2382. 'uid' => '1552',
  2383. )
  2384. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2385. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001548s ]
  2386. [ info ] [ TOKEN ] INIT Mysql
  2387. [ info ] [ DB ] INIT mysql
  2388. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2389. [ info ] [ RUN ] app\api\controller\User->qingdao[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2390. [ info ] [ LOG ] INIT File
  2391. ---------------------------------------------------------------
  2392. [ 2025-04-23T16:42:08+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  2393. [运行时间:0.080269s] [吞吐率:12.46req/s] [内存消耗:4,064.27kb] [文件加载:127]
  2394. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000072s ]
  2395. [ info ] [ CACHE ] INIT File
  2396. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001131s ]
  2397. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2398. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000207s ]
  2399. [ info ] [ ROUTE ] array (
  2400. 'type' => 'module',
  2401. 'module' =>
  2402. array (
  2403. 0 => 'api',
  2404. 1 => 'video',
  2405. 2 => 'zuiju',
  2406. ),
  2407. )
  2408. [ info ] [ HEADER ] array (
  2409. 'priority' => 'u=1, i',
  2410. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2411. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2412. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2413. 'sec-fetch-dest' => 'empty',
  2414. 'sec-fetch-mode' => 'cors',
  2415. 'sec-fetch-site' => 'same-origin',
  2416. 'accept' => '*/*',
  2417. 'sec-ch-ua-mobile' => '?1',
  2418. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2419. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2420. 'sec-ch-ua-platform' => '"Android"',
  2421. 'host' => 'ts.shanghairongxuan.top',
  2422. 'content-length' => '',
  2423. 'content-type' => '',
  2424. )
  2425. [ info ] [ PARAM ] array (
  2426. 'uid' => '1552',
  2427. )
  2428. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2429. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001372s ]
  2430. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2431. [ info ] [ DB ] INIT mysql
  2432. [ info ] [ LOG ] INIT File
  2433. ---------------------------------------------------------------
  2434. [ 2025-04-23T16:42:10+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/recordlist?limit=10&uid=1552
  2435. [运行时间:0.077189s] [吞吐率:12.96req/s] [内存消耗:4,159.76kb] [文件加载:132]
  2436. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
  2437. [ info ] [ CACHE ] INIT File
  2438. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001082s ]
  2439. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2440. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000205s ]
  2441. [ info ] [ ROUTE ] array (
  2442. 'type' => 'module',
  2443. 'module' =>
  2444. array (
  2445. 0 => 'api',
  2446. 1 => 'video',
  2447. 2 => 'recordlist',
  2448. ),
  2449. )
  2450. [ info ] [ HEADER ] array (
  2451. 'priority' => 'u=1, i',
  2452. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2453. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2454. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2455. 'sec-fetch-dest' => 'empty',
  2456. 'sec-fetch-mode' => 'cors',
  2457. 'sec-fetch-site' => 'same-origin',
  2458. 'accept' => '*/*',
  2459. 'sec-ch-ua-mobile' => '?1',
  2460. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2461. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2462. 'sec-ch-ua-platform' => '"Android"',
  2463. 'host' => 'ts.shanghairongxuan.top',
  2464. 'content-length' => '',
  2465. 'content-type' => '',
  2466. )
  2467. [ info ] [ PARAM ] array (
  2468. 'limit' => '10',
  2469. 'uid' => '1552',
  2470. )
  2471. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2472. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001457s ]
  2473. [ info ] [ RUN ] app\api\controller\Video->recordlist[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2474. [ info ] [ DB ] INIT mysql
  2475. [ info ] [ LOG ] INIT File
  2476. ---------------------------------------------------------------
  2477. [ 2025-04-23T16:42:11+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  2478. [运行时间:0.097738s] [吞吐率:10.23req/s] [内存消耗:4,064.27kb] [文件加载:127]
  2479. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000033s ]
  2480. [ info ] [ CACHE ] INIT File
  2481. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001169s ]
  2482. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2483. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000211s ]
  2484. [ info ] [ ROUTE ] array (
  2485. 'type' => 'module',
  2486. 'module' =>
  2487. array (
  2488. 0 => 'api',
  2489. 1 => 'video',
  2490. 2 => 'zuiju',
  2491. ),
  2492. )
  2493. [ info ] [ HEADER ] array (
  2494. 'priority' => 'u=1, i',
  2495. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2496. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2497. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2498. 'sec-fetch-dest' => 'empty',
  2499. 'sec-fetch-mode' => 'cors',
  2500. 'sec-fetch-site' => 'same-origin',
  2501. 'accept' => '*/*',
  2502. 'sec-ch-ua-mobile' => '?1',
  2503. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2504. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2505. 'sec-ch-ua-platform' => '"Android"',
  2506. 'host' => 'ts.shanghairongxuan.top',
  2507. 'content-length' => '',
  2508. 'content-type' => '',
  2509. )
  2510. [ info ] [ PARAM ] array (
  2511. 'uid' => '1552',
  2512. )
  2513. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2514. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001368s ]
  2515. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2516. [ info ] [ DB ] INIT mysql
  2517. [ info ] [ LOG ] INIT File
  2518. ---------------------------------------------------------------
  2519. [ 2025-04-23T16:42:13+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/videolog?limit=10&uid=1552
  2520. [运行时间:0.080692s] [吞吐率:12.39req/s] [内存消耗:4,184.30kb] [文件加载:132]
  2521. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  2522. [ info ] [ CACHE ] INIT File
  2523. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001130s ]
  2524. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2525. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000233s ]
  2526. [ info ] [ ROUTE ] array (
  2527. 'type' => 'module',
  2528. 'module' =>
  2529. array (
  2530. 0 => 'api',
  2531. 1 => 'video',
  2532. 2 => 'videolog',
  2533. ),
  2534. )
  2535. [ info ] [ HEADER ] array (
  2536. 'priority' => 'u=1, i',
  2537. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2538. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2539. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2540. 'sec-fetch-dest' => 'empty',
  2541. 'sec-fetch-mode' => 'cors',
  2542. 'sec-fetch-site' => 'same-origin',
  2543. 'accept' => '*/*',
  2544. 'sec-ch-ua-mobile' => '?1',
  2545. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2546. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2547. 'sec-ch-ua-platform' => '"Android"',
  2548. 'host' => 'ts.shanghairongxuan.top',
  2549. 'content-length' => '',
  2550. 'content-type' => '',
  2551. )
  2552. [ info ] [ PARAM ] array (
  2553. 'limit' => '10',
  2554. 'uid' => '1552',
  2555. )
  2556. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2557. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001180s ]
  2558. [ info ] [ RUN ] app\api\controller\Video->videolog[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2559. [ info ] [ DB ] INIT mysql
  2560. [ info ] [ LOG ] INIT File
  2561. ---------------------------------------------------------------
  2562. [ 2025-04-23T16:42:14+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  2563. [运行时间:0.078139s] [吞吐率:12.80req/s] [内存消耗:4,064.27kb] [文件加载:127]
  2564. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  2565. [ info ] [ CACHE ] INIT File
  2566. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001047s ]
  2567. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2568. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000272s ]
  2569. [ info ] [ ROUTE ] array (
  2570. 'type' => 'module',
  2571. 'module' =>
  2572. array (
  2573. 0 => 'api',
  2574. 1 => 'video',
  2575. 2 => 'zuiju',
  2576. ),
  2577. )
  2578. [ info ] [ HEADER ] array (
  2579. 'priority' => 'u=1, i',
  2580. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2581. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2582. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2583. 'sec-fetch-dest' => 'empty',
  2584. 'sec-fetch-mode' => 'cors',
  2585. 'sec-fetch-site' => 'same-origin',
  2586. 'accept' => '*/*',
  2587. 'sec-ch-ua-mobile' => '?1',
  2588. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2589. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2590. 'sec-ch-ua-platform' => '"Android"',
  2591. 'host' => 'ts.shanghairongxuan.top',
  2592. 'content-length' => '',
  2593. 'content-type' => '',
  2594. )
  2595. [ info ] [ PARAM ] array (
  2596. 'uid' => '1552',
  2597. )
  2598. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2599. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001100s ]
  2600. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2601. [ info ] [ DB ] INIT mysql
  2602. [ info ] [ LOG ] INIT File
  2603. ---------------------------------------------------------------
  2604. [ 2025-04-23T16:45:51+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  2605. [运行时间:0.090227s] [吞吐率:11.08req/s] [内存消耗:4,064.27kb] [文件加载:127]
  2606. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  2607. [ info ] [ CACHE ] INIT File
  2608. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001214s ]
  2609. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2610. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000259s ]
  2611. [ info ] [ ROUTE ] array (
  2612. 'type' => 'module',
  2613. 'module' =>
  2614. array (
  2615. 0 => 'api',
  2616. 1 => 'video',
  2617. 2 => 'zuiju',
  2618. ),
  2619. )
  2620. [ info ] [ HEADER ] array (
  2621. 'priority' => 'u=1, i',
  2622. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2623. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2624. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2625. 'sec-fetch-dest' => 'empty',
  2626. 'sec-fetch-mode' => 'cors',
  2627. 'sec-fetch-site' => 'same-origin',
  2628. 'accept' => '*/*',
  2629. 'sec-ch-ua-mobile' => '?1',
  2630. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2631. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2632. 'sec-ch-ua-platform' => '"Android"',
  2633. 'host' => 'ts.shanghairongxuan.top',
  2634. 'content-length' => '',
  2635. 'content-type' => '',
  2636. )
  2637. [ info ] [ PARAM ] array (
  2638. 'uid' => '1552',
  2639. )
  2640. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2641. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001355s ]
  2642. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2643. [ info ] [ DB ] INIT mysql
  2644. [ info ] [ LOG ] INIT File
  2645. ---------------------------------------------------------------
  2646. [ 2025-04-23T16:49:06+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  2647. [运行时间:0.076220s] [吞吐率:13.12req/s] [内存消耗:4,064.27kb] [文件加载:127]
  2648. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000029s ]
  2649. [ info ] [ CACHE ] INIT File
  2650. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001167s ]
  2651. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2652. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000209s ]
  2653. [ info ] [ ROUTE ] array (
  2654. 'type' => 'module',
  2655. 'module' =>
  2656. array (
  2657. 0 => 'api',
  2658. 1 => 'video',
  2659. 2 => 'zuiju',
  2660. ),
  2661. )
  2662. [ info ] [ HEADER ] array (
  2663. 'priority' => 'u=1, i',
  2664. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2665. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2666. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2667. 'sec-fetch-dest' => 'empty',
  2668. 'sec-fetch-mode' => 'cors',
  2669. 'sec-fetch-site' => 'same-origin',
  2670. 'accept' => '*/*',
  2671. 'sec-ch-ua-mobile' => '?1',
  2672. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2673. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2674. 'sec-ch-ua-platform' => '"Android"',
  2675. 'host' => 'ts.shanghairongxuan.top',
  2676. 'content-length' => '',
  2677. 'content-type' => '',
  2678. )
  2679. [ info ] [ PARAM ] array (
  2680. 'uid' => '1552',
  2681. )
  2682. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2683. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001316s ]
  2684. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2685. [ info ] [ DB ] INIT mysql
  2686. [ info ] [ LOG ] INIT File
  2687. ---------------------------------------------------------------
  2688. [ 2025-04-23T16:49:53+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  2689. [运行时间:0.080760s] [吞吐率:12.38req/s] [内存消耗:4,064.27kb] [文件加载:127]
  2690. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
  2691. [ info ] [ CACHE ] INIT File
  2692. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001156s ]
  2693. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2694. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000210s ]
  2695. [ info ] [ ROUTE ] array (
  2696. 'type' => 'module',
  2697. 'module' =>
  2698. array (
  2699. 0 => 'api',
  2700. 1 => 'video',
  2701. 2 => 'zuiju',
  2702. ),
  2703. )
  2704. [ info ] [ HEADER ] array (
  2705. 'priority' => 'u=1, i',
  2706. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2707. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2708. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2709. 'sec-fetch-dest' => 'empty',
  2710. 'sec-fetch-mode' => 'cors',
  2711. 'sec-fetch-site' => 'same-origin',
  2712. 'accept' => '*/*',
  2713. 'sec-ch-ua-mobile' => '?1',
  2714. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2715. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2716. 'sec-ch-ua-platform' => '"Android"',
  2717. 'host' => 'ts.shanghairongxuan.top',
  2718. 'content-length' => '',
  2719. 'content-type' => '',
  2720. )
  2721. [ info ] [ PARAM ] array (
  2722. 'uid' => '1552',
  2723. )
  2724. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2725. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001407s ]
  2726. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2727. [ info ] [ DB ] INIT mysql
  2728. [ info ] [ LOG ] INIT File
  2729. ---------------------------------------------------------------
  2730. [ 2025-04-23T16:50:16+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  2731. [运行时间:0.078499s] [吞吐率:12.74req/s] [内存消耗:4,064.27kb] [文件加载:127]
  2732. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  2733. [ info ] [ CACHE ] INIT File
  2734. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001112s ]
  2735. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2736. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000217s ]
  2737. [ info ] [ ROUTE ] array (
  2738. 'type' => 'module',
  2739. 'module' =>
  2740. array (
  2741. 0 => 'api',
  2742. 1 => 'video',
  2743. 2 => 'zuiju',
  2744. ),
  2745. )
  2746. [ info ] [ HEADER ] array (
  2747. 'priority' => 'u=1, i',
  2748. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2749. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2750. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2751. 'sec-fetch-dest' => 'empty',
  2752. 'sec-fetch-mode' => 'cors',
  2753. 'sec-fetch-site' => 'same-origin',
  2754. 'accept' => '*/*',
  2755. 'sec-ch-ua-mobile' => '?1',
  2756. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2757. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2758. 'sec-ch-ua-platform' => '"Android"',
  2759. 'host' => 'ts.shanghairongxuan.top',
  2760. 'content-length' => '',
  2761. 'content-type' => '',
  2762. )
  2763. [ info ] [ PARAM ] array (
  2764. 'uid' => '1552',
  2765. )
  2766. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2767. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001325s ]
  2768. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2769. [ info ] [ DB ] INIT mysql
  2770. [ info ] [ LOG ] INIT File
  2771. ---------------------------------------------------------------
  2772. [ 2025-04-23T16:50:18+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  2773. [运行时间:0.076526s] [吞吐率:13.07req/s] [内存消耗:3,974.55kb] [文件加载:129]
  2774. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000029s ]
  2775. [ info ] [ CACHE ] INIT File
  2776. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001524s ]
  2777. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2778. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000270s ]
  2779. [ info ] [ ROUTE ] array (
  2780. 'type' => 'module',
  2781. 'module' =>
  2782. array (
  2783. 0 => 'api',
  2784. 1 => 'user',
  2785. 2 => 'index',
  2786. ),
  2787. )
  2788. [ info ] [ HEADER ] array (
  2789. 'priority' => 'u=1, i',
  2790. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2791. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2792. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2793. 'sec-fetch-dest' => 'empty',
  2794. 'sec-fetch-mode' => 'cors',
  2795. 'sec-fetch-site' => 'same-origin',
  2796. 'accept' => '*/*',
  2797. 'sec-ch-ua-mobile' => '?1',
  2798. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2799. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2800. 'sec-ch-ua-platform' => '"Android"',
  2801. 'host' => 'ts.shanghairongxuan.top',
  2802. 'content-length' => '',
  2803. 'content-type' => '',
  2804. )
  2805. [ info ] [ PARAM ] array (
  2806. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  2807. 'uid' => '1552',
  2808. )
  2809. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2810. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001599s ]
  2811. [ info ] [ TOKEN ] INIT Mysql
  2812. [ info ] [ DB ] INIT mysql
  2813. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2814. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2815. [ info ] [ LOG ] INIT File
  2816. ---------------------------------------------------------------
  2817. [ 2025-04-23T16:50:18+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  2818. [运行时间:0.101516s] [吞吐率:9.85req/s] [内存消耗:4,172.65kb] [文件加载:132]
  2819. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  2820. [ info ] [ CACHE ] INIT File
  2821. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001382s ]
  2822. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2823. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000289s ]
  2824. [ info ] [ ROUTE ] array (
  2825. 'type' => 'module',
  2826. 'module' =>
  2827. array (
  2828. 0 => 'api',
  2829. 1 => 'video',
  2830. 2 => 'lists',
  2831. ),
  2832. )
  2833. [ info ] [ HEADER ] array (
  2834. 'priority' => 'u=1, i',
  2835. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2836. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2837. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2838. 'sec-fetch-dest' => 'empty',
  2839. 'sec-fetch-mode' => 'cors',
  2840. 'sec-fetch-site' => 'same-origin',
  2841. 'accept' => '*/*',
  2842. 'sec-ch-ua-mobile' => '?1',
  2843. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2844. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2845. 'sec-ch-ua-platform' => '"Android"',
  2846. 'host' => 'ts.shanghairongxuan.top',
  2847. 'content-length' => '',
  2848. 'content-type' => '',
  2849. )
  2850. [ info ] [ PARAM ] array (
  2851. 'limit' => '15',
  2852. 'ishot' => '2',
  2853. )
  2854. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2855. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001693s ]
  2856. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2857. [ info ] [ DB ] INIT mysql
  2858. [ info ] [ LOG ] INIT File
  2859. ---------------------------------------------------------------
  2860. [ 2025-04-23T16:50:19+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  2861. [运行时间:0.073898s] [吞吐率:13.53req/s] [内存消耗:3,974.55kb] [文件加载:129]
  2862. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000032s ]
  2863. [ info ] [ CACHE ] INIT File
  2864. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001482s ]
  2865. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2866. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000196s ]
  2867. [ info ] [ ROUTE ] array (
  2868. 'type' => 'module',
  2869. 'module' =>
  2870. array (
  2871. 0 => 'api',
  2872. 1 => 'user',
  2873. 2 => 'index',
  2874. ),
  2875. )
  2876. [ info ] [ HEADER ] array (
  2877. 'priority' => 'u=1, i',
  2878. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2879. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2880. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2881. 'sec-fetch-dest' => 'empty',
  2882. 'sec-fetch-mode' => 'cors',
  2883. 'sec-fetch-site' => 'same-origin',
  2884. 'accept' => '*/*',
  2885. 'sec-ch-ua-mobile' => '?1',
  2886. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2887. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2888. 'sec-ch-ua-platform' => '"Android"',
  2889. 'host' => 'ts.shanghairongxuan.top',
  2890. 'content-length' => '',
  2891. 'content-type' => '',
  2892. )
  2893. [ info ] [ PARAM ] array (
  2894. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  2895. 'uid' => '1552',
  2896. )
  2897. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2898. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001280s ]
  2899. [ info ] [ TOKEN ] INIT Mysql
  2900. [ info ] [ DB ] INIT mysql
  2901. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2902. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2903. [ info ] [ LOG ] INIT File
  2904. ---------------------------------------------------------------
  2905. [ 2025-04-23T16:50:23+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/paywx/paywxh5?iswx=&token=5ed70522-e52c-4c30-8353-2859f41dd8e9&total=1&tdnum=901
  2906. [运行时间:0.063081s] [吞吐率:15.85req/s] [内存消耗:3,775.24kb] [文件加载:127]
  2907. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  2908. [ info ] [ CACHE ] INIT File
  2909. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001274s ]
  2910. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2911. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000205s ]
  2912. [ info ] [ ROUTE ] array (
  2913. 'type' => 'module',
  2914. 'module' =>
  2915. array (
  2916. 0 => 'api',
  2917. 1 => 'paywx',
  2918. 2 => 'paywxh5',
  2919. ),
  2920. )
  2921. [ info ] [ HEADER ] array (
  2922. 'priority' => 'u=1, i',
  2923. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2924. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2925. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2926. 'sec-fetch-dest' => 'empty',
  2927. 'sec-fetch-mode' => 'cors',
  2928. 'sec-fetch-site' => 'same-origin',
  2929. 'accept' => '*/*',
  2930. 'sec-ch-ua-mobile' => '?1',
  2931. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2932. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2933. 'sec-ch-ua-platform' => '"Android"',
  2934. 'host' => 'ts.shanghairongxuan.top',
  2935. 'content-length' => '',
  2936. 'content-type' => '',
  2937. )
  2938. [ info ] [ PARAM ] array (
  2939. 'iswx' => '',
  2940. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  2941. 'total' => '1',
  2942. 'tdnum' => '901',
  2943. )
  2944. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2945. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001455s ]
  2946. [ info ] [ TOKEN ] INIT Mysql
  2947. [ info ] [ DB ] INIT mysql
  2948. [ info ] [ RUN ] app\api\controller\Paywx->paywxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Paywx.php ]
  2949. [ info ] [ LOG ] INIT File
  2950. ---------------------------------------------------------------
  2951. [ 2025-04-23T16:50:24+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top//index/paydsf/wxh5?out_trade_no=2504230480703
  2952. [运行时间:0.366775s] [吞吐率:2.73req/s] [内存消耗:3,938.70kb] [文件加载:126]
  2953. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000031s ]
  2954. [ info ] [ CACHE ] INIT File
  2955. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001177s ]
  2956. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2957. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000212s ]
  2958. [ info ] [ ROUTE ] array (
  2959. 'type' => 'module',
  2960. 'module' =>
  2961. array (
  2962. 0 => 'index',
  2963. 1 => 'paydsf',
  2964. 2 => 'wxh5',
  2965. ),
  2966. )
  2967. [ info ] [ HEADER ] array (
  2968. 'priority' => 'u=0, i',
  2969. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2970. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2971. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2972. 'sec-fetch-dest' => 'document',
  2973. 'sec-fetch-user' => '?1',
  2974. 'sec-fetch-mode' => 'navigate',
  2975. 'sec-fetch-site' => 'same-origin',
  2976. '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.7',
  2977. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  2978. 'upgrade-insecure-requests' => '1',
  2979. 'sec-ch-ua-platform' => '"Android"',
  2980. 'sec-ch-ua-mobile' => '?1',
  2981. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  2982. 'host' => 'ts.shanghairongxuan.top',
  2983. 'content-length' => '',
  2984. 'content-type' => '',
  2985. )
  2986. [ info ] [ PARAM ] array (
  2987. 'out_trade_no' => '2504230480703',
  2988. )
  2989. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  2990. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.003103s ]
  2991. [ info ] [ RUN ] app\index\controller\Paydsf->wxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Paydsf.php ]
  2992. [ info ] [ DB ] INIT mysql
  2993. [ info ] [ LOG ] INIT File
  2994. ---------------------------------------------------------------
  2995. [ 2025-04-23T16:50:30+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  2996. [运行时间:0.062655s] [吞吐率:15.96req/s] [内存消耗:3,974.55kb] [文件加载:129]
  2997. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  2998. [ info ] [ CACHE ] INIT File
  2999. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001073s ]
  3000. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3001. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000236s ]
  3002. [ info ] [ ROUTE ] array (
  3003. 'type' => 'module',
  3004. 'module' =>
  3005. array (
  3006. 0 => 'api',
  3007. 1 => 'user',
  3008. 2 => 'index',
  3009. ),
  3010. )
  3011. [ info ] [ HEADER ] array (
  3012. 'priority' => 'u=1, i',
  3013. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3014. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3015. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3016. 'sec-fetch-dest' => 'empty',
  3017. 'sec-fetch-mode' => 'cors',
  3018. 'sec-fetch-site' => 'same-origin',
  3019. 'accept' => '*/*',
  3020. 'sec-ch-ua-mobile' => '?1',
  3021. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3022. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3023. 'sec-ch-ua-platform' => '"Android"',
  3024. 'host' => 'ts.shanghairongxuan.top',
  3025. 'content-length' => '',
  3026. 'content-type' => '',
  3027. )
  3028. [ info ] [ PARAM ] array (
  3029. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3030. 'uid' => '1552',
  3031. )
  3032. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3033. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001397s ]
  3034. [ info ] [ TOKEN ] INIT Mysql
  3035. [ info ] [ DB ] INIT mysql
  3036. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3037. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3038. [ info ] [ LOG ] INIT File
  3039. ---------------------------------------------------------------
  3040. [ 2025-04-23T16:50:32+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  3041. [运行时间:0.077311s] [吞吐率:12.93req/s] [内存消耗:4,172.65kb] [文件加载:132]
  3042. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
  3043. [ info ] [ CACHE ] INIT File
  3044. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001128s ]
  3045. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3046. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000200s ]
  3047. [ info ] [ ROUTE ] array (
  3048. 'type' => 'module',
  3049. 'module' =>
  3050. array (
  3051. 0 => 'api',
  3052. 1 => 'video',
  3053. 2 => 'lists',
  3054. ),
  3055. )
  3056. [ info ] [ HEADER ] array (
  3057. 'priority' => 'u=1, i',
  3058. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3059. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3060. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3061. 'sec-fetch-dest' => 'empty',
  3062. 'sec-fetch-mode' => 'cors',
  3063. 'sec-fetch-site' => 'same-origin',
  3064. 'accept' => '*/*',
  3065. 'sec-ch-ua-mobile' => '?1',
  3066. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3067. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3068. 'sec-ch-ua-platform' => '"Android"',
  3069. 'host' => 'ts.shanghairongxuan.top',
  3070. 'content-length' => '',
  3071. 'content-type' => '',
  3072. )
  3073. [ info ] [ PARAM ] array (
  3074. 'limit' => '15',
  3075. 'ishot' => '2',
  3076. )
  3077. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3078. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001162s ]
  3079. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  3080. [ info ] [ DB ] INIT mysql
  3081. [ info ] [ LOG ] INIT File
  3082. ---------------------------------------------------------------
  3083. [ 2025-04-23T16:50:32+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  3084. [运行时间:0.090972s] [吞吐率:10.99req/s] [内存消耗:3,974.55kb] [文件加载:129]
  3085. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  3086. [ info ] [ CACHE ] INIT File
  3087. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003685s ]
  3088. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3089. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000301s ]
  3090. [ info ] [ ROUTE ] array (
  3091. 'type' => 'module',
  3092. 'module' =>
  3093. array (
  3094. 0 => 'api',
  3095. 1 => 'user',
  3096. 2 => 'index',
  3097. ),
  3098. )
  3099. [ info ] [ HEADER ] array (
  3100. 'priority' => 'u=1, i',
  3101. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3102. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3103. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3104. 'sec-fetch-dest' => 'empty',
  3105. 'sec-fetch-mode' => 'cors',
  3106. 'sec-fetch-site' => 'same-origin',
  3107. 'accept' => '*/*',
  3108. 'sec-ch-ua-mobile' => '?1',
  3109. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3110. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3111. 'sec-ch-ua-platform' => '"Android"',
  3112. 'host' => 'ts.shanghairongxuan.top',
  3113. 'content-length' => '',
  3114. 'content-type' => '',
  3115. )
  3116. [ info ] [ PARAM ] array (
  3117. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3118. 'uid' => '1552',
  3119. )
  3120. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3121. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001176s ]
  3122. [ info ] [ TOKEN ] INIT Mysql
  3123. [ info ] [ DB ] INIT mysql
  3124. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3125. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3126. [ info ] [ LOG ] INIT File
  3127. ---------------------------------------------------------------
  3128. [ 2025-04-23T16:50:33+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  3129. [运行时间:0.060962s] [吞吐率:16.40req/s] [内存消耗:3,974.55kb] [文件加载:129]
  3130. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000031s ]
  3131. [ info ] [ CACHE ] INIT File
  3132. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001411s ]
  3133. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3134. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000223s ]
  3135. [ info ] [ ROUTE ] array (
  3136. 'type' => 'module',
  3137. 'module' =>
  3138. array (
  3139. 0 => 'api',
  3140. 1 => 'user',
  3141. 2 => 'index',
  3142. ),
  3143. )
  3144. [ info ] [ HEADER ] array (
  3145. 'priority' => 'u=1, i',
  3146. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3147. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3148. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3149. 'sec-fetch-dest' => 'empty',
  3150. 'sec-fetch-mode' => 'cors',
  3151. 'sec-fetch-site' => 'same-origin',
  3152. 'accept' => '*/*',
  3153. 'sec-ch-ua-mobile' => '?1',
  3154. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3155. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3156. 'sec-ch-ua-platform' => '"Android"',
  3157. 'host' => 'ts.shanghairongxuan.top',
  3158. 'content-length' => '',
  3159. 'content-type' => '',
  3160. )
  3161. [ info ] [ PARAM ] array (
  3162. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3163. 'uid' => '1552',
  3164. )
  3165. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3166. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001446s ]
  3167. [ info ] [ TOKEN ] INIT Mysql
  3168. [ info ] [ DB ] INIT mysql
  3169. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3170. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3171. [ info ] [ LOG ] INIT File
  3172. ---------------------------------------------------------------
  3173. [ 2025-04-23T16:52:11+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  3174. [运行时间:0.082432s] [吞吐率:12.13req/s] [内存消耗:3,974.55kb] [文件加载:129]
  3175. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  3176. [ info ] [ CACHE ] INIT File
  3177. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001236s ]
  3178. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3179. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000233s ]
  3180. [ info ] [ ROUTE ] array (
  3181. 'type' => 'module',
  3182. 'module' =>
  3183. array (
  3184. 0 => 'api',
  3185. 1 => 'user',
  3186. 2 => 'index',
  3187. ),
  3188. )
  3189. [ info ] [ HEADER ] array (
  3190. 'priority' => 'u=1, i',
  3191. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3192. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3193. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3194. 'sec-fetch-dest' => 'empty',
  3195. 'sec-fetch-mode' => 'cors',
  3196. 'sec-fetch-site' => 'same-origin',
  3197. 'accept' => '*/*',
  3198. 'sec-ch-ua-mobile' => '?1',
  3199. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3200. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3201. 'sec-ch-ua-platform' => '"Android"',
  3202. 'host' => 'ts.shanghairongxuan.top',
  3203. 'content-length' => '',
  3204. 'content-type' => '',
  3205. )
  3206. [ info ] [ PARAM ] array (
  3207. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3208. 'uid' => '1552',
  3209. )
  3210. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3211. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001553s ]
  3212. [ info ] [ TOKEN ] INIT Mysql
  3213. [ info ] [ DB ] INIT mysql
  3214. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3215. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3216. [ info ] [ LOG ] INIT File
  3217. ---------------------------------------------------------------
  3218. [ 2025-04-23T16:53:38+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  3219. [运行时间:0.056350s] [吞吐率:17.75req/s] [内存消耗:3,974.55kb] [文件加载:129]
  3220. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  3221. [ info ] [ CACHE ] INIT File
  3222. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001109s ]
  3223. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3224. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000226s ]
  3225. [ info ] [ ROUTE ] array (
  3226. 'type' => 'module',
  3227. 'module' =>
  3228. array (
  3229. 0 => 'api',
  3230. 1 => 'user',
  3231. 2 => 'index',
  3232. ),
  3233. )
  3234. [ info ] [ HEADER ] array (
  3235. 'priority' => 'u=1, i',
  3236. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3237. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3238. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3239. 'sec-fetch-dest' => 'empty',
  3240. 'sec-fetch-mode' => 'cors',
  3241. 'sec-fetch-site' => 'same-origin',
  3242. 'accept' => '*/*',
  3243. 'sec-ch-ua-mobile' => '?1',
  3244. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3245. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3246. 'sec-ch-ua-platform' => '"Android"',
  3247. 'host' => 'ts.shanghairongxuan.top',
  3248. 'content-length' => '',
  3249. 'content-type' => '',
  3250. )
  3251. [ info ] [ PARAM ] array (
  3252. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3253. 'uid' => '1552',
  3254. )
  3255. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3256. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001450s ]
  3257. [ info ] [ TOKEN ] INIT Mysql
  3258. [ info ] [ DB ] INIT mysql
  3259. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3260. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3261. [ info ] [ LOG ] INIT File
  3262. ---------------------------------------------------------------
  3263. [ 2025-04-23T17:18:52+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  3264. [运行时间:0.078967s] [吞吐率:12.66req/s] [内存消耗:3,974.55kb] [文件加载:129]
  3265. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
  3266. [ info ] [ CACHE ] INIT File
  3267. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001294s ]
  3268. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3269. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000242s ]
  3270. [ info ] [ ROUTE ] array (
  3271. 'type' => 'module',
  3272. 'module' =>
  3273. array (
  3274. 0 => 'api',
  3275. 1 => 'user',
  3276. 2 => 'index',
  3277. ),
  3278. )
  3279. [ info ] [ HEADER ] array (
  3280. 'priority' => 'u=1, i',
  3281. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3282. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3283. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3284. 'sec-fetch-dest' => 'empty',
  3285. 'sec-fetch-mode' => 'cors',
  3286. 'sec-fetch-site' => 'same-origin',
  3287. 'accept' => '*/*',
  3288. 'sec-ch-ua-mobile' => '?1',
  3289. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3290. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3291. 'sec-ch-ua-platform' => '"Android"',
  3292. 'host' => 'ts.shanghairongxuan.top',
  3293. 'content-length' => '',
  3294. 'content-type' => '',
  3295. )
  3296. [ info ] [ PARAM ] array (
  3297. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3298. 'uid' => '1552',
  3299. )
  3300. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3301. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001670s ]
  3302. [ info ] [ TOKEN ] INIT Mysql
  3303. [ info ] [ DB ] INIT mysql
  3304. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3305. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3306. [ info ] [ LOG ] INIT File
  3307. ---------------------------------------------------------------
  3308. [ 2025-04-23T17:19:07+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  3309. [运行时间:0.072407s] [吞吐率:13.81req/s] [内存消耗:3,974.55kb] [文件加载:129]
  3310. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  3311. [ info ] [ CACHE ] INIT File
  3312. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001688s ]
  3313. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3314. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000315s ]
  3315. [ info ] [ ROUTE ] array (
  3316. 'type' => 'module',
  3317. 'module' =>
  3318. array (
  3319. 0 => 'api',
  3320. 1 => 'user',
  3321. 2 => 'index',
  3322. ),
  3323. )
  3324. [ info ] [ HEADER ] array (
  3325. 'priority' => 'u=1, i',
  3326. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3327. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3328. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3329. 'sec-fetch-dest' => 'empty',
  3330. 'sec-fetch-mode' => 'cors',
  3331. 'sec-fetch-site' => 'same-origin',
  3332. 'accept' => '*/*',
  3333. 'sec-ch-ua-mobile' => '?1',
  3334. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3335. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3336. 'sec-ch-ua-platform' => '"Android"',
  3337. 'host' => 'ts.shanghairongxuan.top',
  3338. 'content-length' => '',
  3339. 'content-type' => '',
  3340. )
  3341. [ info ] [ PARAM ] array (
  3342. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3343. 'uid' => '1552',
  3344. )
  3345. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3346. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002049s ]
  3347. [ info ] [ TOKEN ] INIT Mysql
  3348. [ info ] [ DB ] INIT mysql
  3349. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3350. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3351. [ info ] [ LOG ] INIT File
  3352. ---------------------------------------------------------------
  3353. [ 2025-04-23T17:25:47+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  3354. [运行时间:0.065018s] [吞吐率:15.38req/s] [内存消耗:3,974.55kb] [文件加载:129]
  3355. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000072s ]
  3356. [ info ] [ CACHE ] INIT File
  3357. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001173s ]
  3358. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3359. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000220s ]
  3360. [ info ] [ ROUTE ] array (
  3361. 'type' => 'module',
  3362. 'module' =>
  3363. array (
  3364. 0 => 'api',
  3365. 1 => 'user',
  3366. 2 => 'index',
  3367. ),
  3368. )
  3369. [ info ] [ HEADER ] array (
  3370. 'priority' => 'u=1, i',
  3371. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3372. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3373. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3374. 'sec-fetch-dest' => 'empty',
  3375. 'sec-fetch-mode' => 'cors',
  3376. 'sec-fetch-site' => 'same-origin',
  3377. 'accept' => '*/*',
  3378. 'sec-ch-ua-mobile' => '?1',
  3379. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3380. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3381. 'sec-ch-ua-platform' => '"Android"',
  3382. 'host' => 'ts.shanghairongxuan.top',
  3383. 'content-length' => '',
  3384. 'content-type' => '',
  3385. )
  3386. [ info ] [ PARAM ] array (
  3387. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3388. 'uid' => '1552',
  3389. )
  3390. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3391. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001825s ]
  3392. [ info ] [ TOKEN ] INIT Mysql
  3393. [ info ] [ DB ] INIT mysql
  3394. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3395. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3396. [ info ] [ LOG ] INIT File
  3397. ---------------------------------------------------------------
  3398. [ 2025-04-23T17:31:32+08:00 ] 125.126.64.147 GET ts.shanghairongxuan.top/api/user/index?token=5ed70522-e52c-4c30-8353-2859f41dd8e9&uid=1552
  3399. [运行时间:0.073360s] [吞吐率:13.63req/s] [内存消耗:3,974.55kb] [文件加载:129]
  3400. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
  3401. [ info ] [ CACHE ] INIT File
  3402. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001187s ]
  3403. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3404. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000223s ]
  3405. [ info ] [ ROUTE ] array (
  3406. 'type' => 'module',
  3407. 'module' =>
  3408. array (
  3409. 0 => 'api',
  3410. 1 => 'user',
  3411. 2 => 'index',
  3412. ),
  3413. )
  3414. [ info ] [ HEADER ] array (
  3415. 'priority' => 'u=1, i',
  3416. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3417. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3418. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3419. 'sec-fetch-dest' => 'empty',
  3420. 'sec-fetch-mode' => 'cors',
  3421. 'sec-fetch-site' => 'same-origin',
  3422. 'accept' => '*/*',
  3423. 'sec-ch-ua-mobile' => '?1',
  3424. 'sec-ch-ua' => '"Microsoft Edge";v="135", "Not-A.Brand";v="8", "Chromium";v="135"',
  3425. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36 Edg/135.0.0.0',
  3426. 'sec-ch-ua-platform' => '"Android"',
  3427. 'host' => 'ts.shanghairongxuan.top',
  3428. 'content-length' => '',
  3429. 'content-type' => '',
  3430. )
  3431. [ info ] [ PARAM ] array (
  3432. 'token' => '5ed70522-e52c-4c30-8353-2859f41dd8e9',
  3433. 'uid' => '1552',
  3434. )
  3435. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3436. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001383s ]
  3437. [ info ] [ TOKEN ] INIT Mysql
  3438. [ info ] [ DB ] INIT mysql
  3439. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3440. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3441. [ info ] [ LOG ] INIT File
  3442. ---------------------------------------------------------------
  3443. [ 2025-04-23T18:51:00+08:00 ] 127.0.0.1 GET ts.shanghairongxuan.top/
  3444. [运行时间:0.056303s] [吞吐率:17.76req/s] [内存消耗:3,003.62kb] [文件加载:123]
  3445. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000084s ]
  3446. [ info ] [ CACHE ] INIT File
  3447. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001824s ]
  3448. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3449. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000371s ]
  3450. [ info ] [ ROUTE ] array (
  3451. 'type' => 'module',
  3452. 'module' =>
  3453. array (
  3454. 0 => '',
  3455. 1 => NULL,
  3456. 2 => NULL,
  3457. ),
  3458. )
  3459. [ info ] [ HEADER ] array (
  3460. 'host' => 'ts.shanghairongxuan.top',
  3461. 'referer' => 'https://www.baidu.com/',
  3462. 'connection' => 'keep-alive',
  3463. 'accept' => '*/*',
  3464. 'accept-encoding' => 'gzip, deflate, br',
  3465. 'user-agent' => 'Mozilla/5.0 (Linux; Android 10; MI 9 Build/QKQ1.190825.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/67.0.3396.87 XWEB/1171 MMWEBSDK/200201 Mobile Safari/537.36 MMWEBID/2568 MicroMessenger/7.0.12.1620(0x27000C37) Process/tools NetType/4G Language/zh_CN ABI/arm64',
  3466. 'content-length' => '',
  3467. 'content-type' => '',
  3468. )
  3469. [ info ] [ PARAM ] array (
  3470. )
  3471. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  3472. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002750s ]
  3473. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn/index.php
  3474. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Index.php ]
  3475. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/view/index/index.html [ array (
  3476. 0 => 'user',
  3477. 1 => 'site',
  3478. 2 => 'config',
  3479. ) ]
  3480. [ info ] [ LOG ] INIT File