27.log 184 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113
  1. ---------------------------------------------------------------
  2. [ 2025-05-27T01:30:02+08:00 ] 150.242.82.13 GET ts.shanghairongxuan.top/api/platform/platform_income_day
  3. [运行时间:0.168918s] [吞吐率:5.92req/s] [内存消耗:3,647.35kb] [文件加载:124]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001301s ]
  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.000248s ]
  9. [ info ] [ ROUTE ] array (
  10. 'type' => 'module',
  11. 'module' =>
  12. array (
  13. 0 => 'api',
  14. 1 => 'platform',
  15. 2 => 'platform_income_day',
  16. ),
  17. )
  18. [ info ] [ HEADER ] array (
  19. 'accept' => '*/*',
  20. 'user-agent' => 'curl/8.5.0',
  21. 'host' => 'ts.shanghairongxuan.top',
  22. 'content-length' => '',
  23. 'content-type' => '',
  24. )
  25. [ info ] [ PARAM ] array (
  26. )
  27. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  28. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001364s ]
  29. [ info ] [ RUN ] app\api\controller\Platform->platform_income_day[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Platform.php ]
  30. [ info ] [ DB ] INIT mysql
  31. [ info ] [ LOG ] INIT File
  32. ---------------------------------------------------------------
  33. [ 2025-05-27T07:30:01+08:00 ] 150.242.82.13 GET ts.shanghairongxuan.top/api/platform/dividend_day
  34. [运行时间:0.252082s] [吞吐率:3.97req/s] [内存消耗:3,806.09kb] [文件加载:129]
  35. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  36. [ info ] [ CACHE ] INIT File
  37. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001170s ]
  38. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  39. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000234s ]
  40. [ info ] [ ROUTE ] array (
  41. 'type' => 'module',
  42. 'module' =>
  43. array (
  44. 0 => 'api',
  45. 1 => 'platform',
  46. 2 => 'dividend_day',
  47. ),
  48. )
  49. [ info ] [ HEADER ] array (
  50. 'accept' => '*/*',
  51. 'user-agent' => 'curl/8.5.0',
  52. 'host' => 'ts.shanghairongxuan.top',
  53. 'content-length' => '',
  54. 'content-type' => '',
  55. )
  56. [ info ] [ PARAM ] array (
  57. )
  58. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  59. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001352s ]
  60. [ info ] [ RUN ] app\api\controller\Platform->dividend_day[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Platform.php ]
  61. [ info ] [ DB ] INIT mysql
  62. [ info ] [ LOG ] INIT File
  63. ---------------------------------------------------------------
  64. [ 2025-05-27T08:42:12+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php
  65. [运行时间:0.095767s] [吞吐率:10.44req/s] [内存消耗:4,122.23kb] [文件加载:133]
  66. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  67. [ info ] [ CACHE ] INIT File
  68. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001483s ]
  69. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  70. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000290s ]
  71. [ info ] [ ROUTE ] array (
  72. 'type' => 'module',
  73. 'module' =>
  74. array (
  75. 0 => 'admin',
  76. 1 => NULL,
  77. 2 => NULL,
  78. ),
  79. )
  80. [ info ] [ HEADER ] array (
  81. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748311005%7Ccd450533da36c7f82c433fba1e685547',
  82. 'priority' => 'u=0, i',
  83. 'accept-language' => 'zh-CN,zh;q=0.9',
  84. 'accept-encoding' => 'gzip, deflate, br, zstd',
  85. 'sec-fetch-dest' => 'document',
  86. 'sec-fetch-user' => '?1',
  87. 'sec-fetch-mode' => 'navigate',
  88. 'sec-fetch-site' => 'none',
  89. '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',
  90. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  91. 'upgrade-insecure-requests' => '1',
  92. 'sec-ch-ua-platform' => '"Windows"',
  93. 'sec-ch-ua-mobile' => '?0',
  94. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  95. 'host' => 'ts.shanghairongxuan.top',
  96. 'content-length' => '',
  97. 'content-type' => '',
  98. )
  99. [ info ] [ PARAM ] array (
  100. )
  101. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  102. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001665s ]
  103. [ info ] [ SESSION ] INIT array (
  104. 'id' => '',
  105. 'var_session_id' => '',
  106. 'prefix' => 'think',
  107. 'type' => '',
  108. 'auto_start' => true,
  109. )
  110. [ info ] [ DB ] INIT mysql
  111. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/common/view/tpl/dispatch_jump.tpl [ array (
  112. 0 => 'code',
  113. 1 => 'msg',
  114. 2 => 'data',
  115. 3 => 'url',
  116. 4 => 'wait',
  117. ) ]
  118. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000232s ]
  119. [ info ] [ LOG ] INIT File
  120. ---------------------------------------------------------------
  121. [ 2025-05-27T08:42:13+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php
  122. [运行时间:0.049509s] [吞吐率:20.20req/s] [内存消耗:3,398.54kb] [文件加载:127]
  123. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000032s ]
  124. [ info ] [ CACHE ] INIT File
  125. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001041s ]
  126. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  127. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000209s ]
  128. [ info ] [ ROUTE ] array (
  129. 'type' => 'module',
  130. 'module' =>
  131. array (
  132. 0 => 'admin',
  133. 1 => 'index',
  134. 2 => 'login',
  135. ),
  136. )
  137. [ info ] [ HEADER ] array (
  138. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n',
  139. 'priority' => 'u=0, i',
  140. 'accept-language' => 'zh-CN,zh;q=0.9',
  141. 'accept-encoding' => 'gzip, deflate, br, zstd',
  142. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php',
  143. 'sec-fetch-dest' => 'document',
  144. 'sec-fetch-user' => '?1',
  145. 'sec-fetch-mode' => 'navigate',
  146. 'sec-fetch-site' => 'same-origin',
  147. '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',
  148. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  149. 'upgrade-insecure-requests' => '1',
  150. 'sec-ch-ua-platform' => '"Windows"',
  151. 'sec-ch-ua-mobile' => '?0',
  152. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  153. 'host' => 'ts.shanghairongxuan.top',
  154. 'content-length' => '',
  155. 'content-type' => '',
  156. )
  157. [ info ] [ PARAM ] array (
  158. 'url' => '/tannuoyun.php',
  159. )
  160. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  161. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001187s ]
  162. [ info ] [ SESSION ] INIT array (
  163. 'id' => '',
  164. 'var_session_id' => '',
  165. 'prefix' => 'think',
  166. 'type' => '',
  167. 'auto_start' => true,
  168. )
  169. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  170. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Index.php ]
  171. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/view/index/login.html [ array (
  172. 0 => 'breadcrumb',
  173. 1 => 'site',
  174. 2 => 'config',
  175. 3 => 'auth',
  176. 4 => 'admin',
  177. 5 => 'background',
  178. 6 => 'title',
  179. ) ]
  180. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000124s ]
  181. [ info ] [ LOG ] INIT File
  182. ---------------------------------------------------------------
  183. [ 2025-05-27T08:42:13+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/ajax/lang?callback=define&controllername=index&v=1748306533
  184. [运行时间:0.050269s] [吞吐率:19.89req/s] [内存消耗:3,406.45kb] [文件加载:127]
  185. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  186. [ info ] [ CACHE ] INIT File
  187. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001095s ]
  188. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  189. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000256s ]
  190. [ info ] [ ROUTE ] array (
  191. 'type' => 'module',
  192. 'module' =>
  193. array (
  194. 0 => 'admin',
  195. 1 => 'ajax',
  196. 2 => 'lang',
  197. ),
  198. )
  199. [ info ] [ HEADER ] array (
  200. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n',
  201. 'accept-language' => 'zh-CN,zh;q=0.9',
  202. 'accept-encoding' => 'gzip, deflate, br, zstd',
  203. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php',
  204. 'sec-fetch-dest' => 'script',
  205. 'sec-fetch-mode' => 'no-cors',
  206. 'sec-fetch-site' => 'same-origin',
  207. 'accept' => '*/*',
  208. 'sec-ch-ua-mobile' => '?0',
  209. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  210. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  211. 'sec-ch-ua-platform' => '"Windows"',
  212. 'host' => 'ts.shanghairongxuan.top',
  213. 'content-length' => '',
  214. 'content-type' => '',
  215. )
  216. [ info ] [ PARAM ] array (
  217. 'callback' => 'define',
  218. 'controllername' => 'index',
  219. 'v' => '1748306533',
  220. )
  221. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  222. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001315s ]
  223. [ info ] [ SESSION ] INIT array (
  224. 'id' => '',
  225. 'var_session_id' => '',
  226. 'prefix' => 'think',
  227. 'type' => '',
  228. 'auto_start' => true,
  229. )
  230. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/ajax.php
  231. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Ajax.php ]
  232. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  233. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000115s ]
  234. [ info ] [ LOG ] INIT File
  235. ---------------------------------------------------------------
  236. [ 2025-05-27T08:42:20+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php
  237. [运行时间:0.085492s] [吞吐率:11.70req/s] [内存消耗:4,212.09kb] [文件加载:137]
  238. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  239. [ info ] [ CACHE ] INIT File
  240. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001138s ]
  241. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  242. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000246s ]
  243. [ info ] [ ROUTE ] array (
  244. 'type' => 'module',
  245. 'module' =>
  246. array (
  247. 0 => 'admin',
  248. 1 => 'index',
  249. 2 => 'login',
  250. ),
  251. )
  252. [ info ] [ HEADER ] array (
  253. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n',
  254. 'priority' => 'u=1, i',
  255. 'accept-language' => 'zh-CN,zh;q=0.9',
  256. 'accept-encoding' => 'gzip, deflate, br, zstd',
  257. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php',
  258. 'sec-fetch-dest' => 'empty',
  259. 'sec-fetch-mode' => 'cors',
  260. 'sec-fetch-site' => 'same-origin',
  261. 'origin' => 'https://ts.shanghairongxuan.top',
  262. 'sec-ch-ua-mobile' => '?0',
  263. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  264. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  265. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  266. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  267. 'x-requested-with' => 'XMLHttpRequest',
  268. 'sec-ch-ua-platform' => '"Windows"',
  269. 'content-length' => '88',
  270. 'host' => 'ts.shanghairongxuan.top',
  271. )
  272. [ info ] [ PARAM ] array (
  273. 'url' => '/tannuoyun.php',
  274. '__token__' => 'a0c5a215bed9c396613a1b94e59f24b7',
  275. 'username' => 'admin',
  276. 'password' => 'admin1234',
  277. 'keeplogin' => '1',
  278. )
  279. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  280. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002449s ]
  281. [ info ] [ SESSION ] INIT array (
  282. 'id' => '',
  283. 'var_session_id' => '',
  284. 'prefix' => 'think',
  285. 'type' => '',
  286. 'auto_start' => true,
  287. )
  288. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  289. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Index.php ]
  290. [ info ] [ DB ] INIT mysql
  291. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.008957s ]
  292. [ info ] [ LOG ] INIT File
  293. ---------------------------------------------------------------
  294. [ 2025-05-27T08:42:20+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php
  295. [运行时间:0.106910s] [吞吐率:9.35req/s] [内存消耗:4,541.52kb] [文件加载:146]
  296. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  297. [ info ] [ CACHE ] INIT File
  298. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001212s ]
  299. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  300. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000212s ]
  301. [ info ] [ ROUTE ] array (
  302. 'type' => 'module',
  303. 'module' =>
  304. array (
  305. 0 => 'admin',
  306. 1 => NULL,
  307. 2 => NULL,
  308. ),
  309. )
  310. [ info ] [ HEADER ] array (
  311. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  312. 'priority' => 'u=0, i',
  313. 'accept-language' => 'zh-CN,zh;q=0.9',
  314. 'accept-encoding' => 'gzip, deflate, br, zstd',
  315. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php',
  316. 'sec-fetch-dest' => 'document',
  317. 'sec-fetch-user' => '?1',
  318. 'sec-fetch-mode' => 'navigate',
  319. 'sec-fetch-site' => 'same-origin',
  320. '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',
  321. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  322. 'upgrade-insecure-requests' => '1',
  323. 'sec-ch-ua-platform' => '"Windows"',
  324. 'sec-ch-ua-mobile' => '?0',
  325. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  326. 'host' => 'ts.shanghairongxuan.top',
  327. 'content-length' => '',
  328. 'content-type' => '',
  329. )
  330. [ info ] [ PARAM ] array (
  331. )
  332. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  333. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001205s ]
  334. [ info ] [ SESSION ] INIT array (
  335. 'id' => '',
  336. 'var_session_id' => '',
  337. 'prefix' => 'think',
  338. 'type' => '',
  339. 'auto_start' => true,
  340. )
  341. [ info ] [ DB ] INIT mysql
  342. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  343. [ info ] [ RUN ] app\admin\controller\Index->index[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Index.php ]
  344. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/view/index/index.html [ array (
  345. 0 => 'breadcrumb',
  346. 1 => 'site',
  347. 2 => 'config',
  348. 3 => 'auth',
  349. 4 => 'admin',
  350. 5 => 'menulist',
  351. 6 => 'navlist',
  352. 7 => 'fixedmenu',
  353. 8 => 'referermenu',
  354. 9 => 'title',
  355. ) ]
  356. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000124s ]
  357. [ info ] [ LOG ] INIT File
  358. ---------------------------------------------------------------
  359. [ 2025-05-27T08:42:21+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/dashboard?addtabs=1
  360. [运行时间:0.067808s] [吞吐率:14.75req/s] [内存消耗:4,319.72kb] [文件加载:135]
  361. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  362. [ info ] [ CACHE ] INIT File
  363. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001012s ]
  364. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  365. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000230s ]
  366. [ info ] [ ROUTE ] array (
  367. 'type' => 'module',
  368. 'module' =>
  369. array (
  370. 0 => 'admin',
  371. 1 => 'dashboard',
  372. 2 => NULL,
  373. ),
  374. )
  375. [ info ] [ HEADER ] array (
  376. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  377. 'priority' => 'u=0, i',
  378. 'accept-language' => 'zh-CN,zh;q=0.9',
  379. 'accept-encoding' => 'gzip, deflate, br, zstd',
  380. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php',
  381. 'sec-fetch-dest' => 'iframe',
  382. 'sec-fetch-mode' => 'navigate',
  383. 'sec-fetch-site' => 'same-origin',
  384. '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',
  385. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  386. 'upgrade-insecure-requests' => '1',
  387. 'sec-ch-ua-platform' => '"Windows"',
  388. 'sec-ch-ua-mobile' => '?0',
  389. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  390. 'host' => 'ts.shanghairongxuan.top',
  391. 'content-length' => '',
  392. 'content-type' => '',
  393. )
  394. [ info ] [ PARAM ] array (
  395. 'addtabs' => '1',
  396. )
  397. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  398. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001085s ]
  399. [ info ] [ SESSION ] INIT array (
  400. 'id' => '',
  401. 'var_session_id' => '',
  402. 'prefix' => 'think',
  403. 'type' => '',
  404. 'auto_start' => true,
  405. )
  406. [ info ] [ DB ] INIT mysql
  407. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/dashboard.php
  408. [ info ] [ RUN ] app\admin\controller\Dashboard->index[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Dashboard.php ]
  409. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/view/dashboard/index.html [ array (
  410. 0 => 'breadcrumb',
  411. 1 => 'site',
  412. 2 => 'config',
  413. 3 => 'auth',
  414. 4 => 'admin',
  415. 5 => 'totaluser',
  416. 6 => 'totalviews',
  417. 7 => 'totalorder',
  418. 8 => 'totalorderamount',
  419. 9 => 'todayuserlogin',
  420. 10 => 'todayusersignup',
  421. 11 => 'todayorder',
  422. 12 => 'unsettleorder',
  423. 13 => 'sevendnu',
  424. 14 => 'sevendau',
  425. 15 => 'paylist',
  426. 16 => 'createlist',
  427. 17 => 'addonversion',
  428. 18 => 'uploadmode',
  429. ) ]
  430. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000226s ]
  431. [ info ] [ LOG ] INIT File
  432. ---------------------------------------------------------------
  433. [ 2025-05-27T08:42:21+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/ajax/lang?callback=define&controllername=index&v=1748306540
  434. [运行时间:0.062593s] [吞吐率:15.98req/s] [内存消耗:4,318.15kb] [文件加载:134]
  435. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  436. [ info ] [ CACHE ] INIT File
  437. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001085s ]
  438. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  439. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000206s ]
  440. [ info ] [ ROUTE ] array (
  441. 'type' => 'module',
  442. 'module' =>
  443. array (
  444. 0 => 'admin',
  445. 1 => 'ajax',
  446. 2 => 'lang',
  447. ),
  448. )
  449. [ info ] [ HEADER ] array (
  450. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  451. 'accept-language' => 'zh-CN,zh;q=0.9',
  452. 'accept-encoding' => 'gzip, deflate, br, zstd',
  453. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php',
  454. 'sec-fetch-dest' => 'script',
  455. 'sec-fetch-mode' => 'no-cors',
  456. 'sec-fetch-site' => 'same-origin',
  457. 'accept' => '*/*',
  458. 'sec-ch-ua-mobile' => '?0',
  459. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  460. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  461. 'sec-ch-ua-platform' => '"Windows"',
  462. 'host' => 'ts.shanghairongxuan.top',
  463. 'content-length' => '',
  464. 'content-type' => '',
  465. )
  466. [ info ] [ PARAM ] array (
  467. 'callback' => 'define',
  468. 'controllername' => 'index',
  469. 'v' => '1748306540',
  470. )
  471. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  472. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001419s ]
  473. [ info ] [ SESSION ] INIT array (
  474. 'id' => '',
  475. 'var_session_id' => '',
  476. 'prefix' => 'think',
  477. 'type' => '',
  478. 'auto_start' => true,
  479. )
  480. [ info ] [ DB ] INIT mysql
  481. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/ajax.php
  482. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Ajax.php ]
  483. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  484. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000139s ]
  485. [ info ] [ LOG ] INIT File
  486. ---------------------------------------------------------------
  487. [ 2025-05-27T08:42:21+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/ajax/lang?callback=define&controllername=dashboard&v=1748306541
  488. [运行时间:0.080015s] [吞吐率:12.50req/s] [内存消耗:4,316.51kb] [文件加载:134]
  489. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  490. [ info ] [ CACHE ] INIT File
  491. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001556s ]
  492. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  493. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000324s ]
  494. [ info ] [ ROUTE ] array (
  495. 'type' => 'module',
  496. 'module' =>
  497. array (
  498. 0 => 'admin',
  499. 1 => 'ajax',
  500. 2 => 'lang',
  501. ),
  502. )
  503. [ info ] [ HEADER ] array (
  504. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  505. 'accept-language' => 'zh-CN,zh;q=0.9',
  506. 'accept-encoding' => 'gzip, deflate, br, zstd',
  507. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/dashboard?addtabs=1',
  508. 'sec-fetch-dest' => 'script',
  509. 'sec-fetch-mode' => 'no-cors',
  510. 'sec-fetch-site' => 'same-origin',
  511. 'accept' => '*/*',
  512. 'sec-ch-ua-mobile' => '?0',
  513. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  514. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  515. 'sec-ch-ua-platform' => '"Windows"',
  516. 'host' => 'ts.shanghairongxuan.top',
  517. 'content-length' => '',
  518. 'content-type' => '',
  519. )
  520. [ info ] [ PARAM ] array (
  521. 'callback' => 'define',
  522. 'controllername' => 'dashboard',
  523. 'v' => '1748306541',
  524. )
  525. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  526. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001710s ]
  527. [ info ] [ SESSION ] INIT array (
  528. 'id' => '',
  529. 'var_session_id' => '',
  530. 'prefix' => 'think',
  531. 'type' => '',
  532. 'auto_start' => true,
  533. )
  534. [ info ] [ DB ] INIT mysql
  535. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/ajax.php
  536. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Ajax.php ]
  537. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/dashboard.php
  538. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000301s ]
  539. [ info ] [ LOG ] INIT File
  540. ---------------------------------------------------------------
  541. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/favicon.ico
  542. [运行时间:0.032816s] [吞吐率:30.47req/s] [内存消耗:1,927.91kb] [文件加载:60]
  543. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
  544. [ info ] [ CACHE ] INIT File
  545. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001388s ]
  546. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  547. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000201s ]
  548. [ info ] [ ROUTE ] array (
  549. 'type' => 'module',
  550. 'module' =>
  551. array (
  552. 0 => 'favicon.ico',
  553. 1 => NULL,
  554. 2 => NULL,
  555. ),
  556. )
  557. [ info ] [ HEADER ] array (
  558. 'priority' => 'u=1, i',
  559. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  560. 'accept-encoding' => 'gzip, deflate, br, zstd',
  561. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  562. 'sec-fetch-dest' => 'image',
  563. 'sec-fetch-mode' => 'no-cors',
  564. 'sec-fetch-site' => 'same-origin',
  565. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  566. 'sec-ch-ua-mobile' => '?0',
  567. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  568. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  569. 'sec-ch-ua-platform' => '"Windows"',
  570. 'host' => 'ts.shanghairongxuan.top',
  571. 'content-length' => '',
  572. 'content-type' => '',
  573. )
  574. [ info ] [ PARAM ] array (
  575. )
  576. [ info ] [ LOG ] INIT File
  577. ---------------------------------------------------------------
  578. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/favicon.ico
  579. [运行时间:0.028726s] [吞吐率:34.81req/s] [内存消耗:1,927.94kb] [文件加载:60]
  580. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  581. [ info ] [ CACHE ] INIT File
  582. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001308s ]
  583. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  584. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000190s ]
  585. [ info ] [ ROUTE ] array (
  586. 'type' => 'module',
  587. 'module' =>
  588. array (
  589. 0 => '404',
  590. 1 => NULL,
  591. 2 => NULL,
  592. ),
  593. )
  594. [ info ] [ HEADER ] array (
  595. 'priority' => 'u=1, i',
  596. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  597. 'accept-encoding' => 'gzip, deflate, br, zstd',
  598. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  599. 'sec-fetch-dest' => 'image',
  600. 'sec-fetch-mode' => 'no-cors',
  601. 'sec-fetch-site' => 'same-origin',
  602. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  603. 'sec-ch-ua-mobile' => '?0',
  604. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  605. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  606. 'sec-ch-ua-platform' => '"Windows"',
  607. 'host' => 'ts.shanghairongxuan.top',
  608. 'content-length' => '',
  609. 'content-type' => '',
  610. )
  611. [ info ] [ PARAM ] array (
  612. )
  613. [ info ] [ LOG ] INIT File
  614. ---------------------------------------------------------------
  615. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/indexdata
  616. [运行时间:0.114389s] [吞吐率:8.74req/s] [内存消耗:4,072.49kb] [文件加载:83]
  617. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  618. [ info ] [ CACHE ] INIT File
  619. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001891s ]
  620. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  621. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000241s ]
  622. [ info ] [ ROUTE ] array (
  623. 'type' => 'module',
  624. 'module' =>
  625. array (
  626. 0 => 'api',
  627. 1 => 'video',
  628. 2 => 'indexdata',
  629. ),
  630. )
  631. [ info ] [ HEADER ] array (
  632. 'priority' => 'u=1, i',
  633. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  634. 'accept-encoding' => 'gzip, deflate, br, zstd',
  635. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  636. 'sec-fetch-dest' => 'empty',
  637. 'sec-fetch-mode' => 'cors',
  638. 'sec-fetch-site' => 'same-origin',
  639. 'accept' => '*/*',
  640. 'sec-ch-ua-mobile' => '?0',
  641. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  642. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  643. 'sec-ch-ua-platform' => '"Windows"',
  644. 'host' => 'ts.shanghairongxuan.top',
  645. 'content-length' => '',
  646. 'content-type' => '',
  647. )
  648. [ info ] [ PARAM ] array (
  649. )
  650. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  651. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002155s ]
  652. [ info ] [ RUN ] app\api\controller\Video->indexdata[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  653. [ info ] [ DB ] INIT mysql
  654. [ info ] [ LOG ] INIT File
  655. ---------------------------------------------------------------
  656. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//uploads/20230306/ccb58a7201ece0ed717acf6a141bc3c1.jpg
  657. [运行时间:0.038018s] [吞吐率:26.30req/s] [内存消耗:1,928.02kb] [文件加载:60]
  658. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  659. [ info ] [ CACHE ] INIT File
  660. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001366s ]
  661. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  662. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000270s ]
  663. [ info ] [ ROUTE ] array (
  664. 'type' => 'module',
  665. 'module' =>
  666. array (
  667. 0 => '404',
  668. 1 => NULL,
  669. 2 => NULL,
  670. ),
  671. )
  672. [ info ] [ HEADER ] array (
  673. 'priority' => 'i',
  674. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  675. 'accept-encoding' => 'gzip, deflate, br, zstd',
  676. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  677. 'sec-fetch-dest' => 'image',
  678. 'sec-fetch-mode' => 'no-cors',
  679. 'sec-fetch-site' => 'same-origin',
  680. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  681. 'sec-ch-ua-mobile' => '?0',
  682. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  683. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  684. 'sec-ch-ua-platform' => '"Windows"',
  685. 'host' => 'ts.shanghairongxuan.top',
  686. 'content-length' => '',
  687. 'content-type' => '',
  688. )
  689. [ info ] [ PARAM ] array (
  690. )
  691. [ info ] [ LOG ] INIT File
  692. ---------------------------------------------------------------
  693. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//uploads/20230306/e61f9756925b537a562dcd3e45d47a92.jpg
  694. [运行时间:0.039787s] [吞吐率:25.13req/s] [内存消耗:1,928.02kb] [文件加载:60]
  695. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
  696. [ info ] [ CACHE ] INIT File
  697. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001097s ]
  698. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  699. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000291s ]
  700. [ info ] [ ROUTE ] array (
  701. 'type' => 'module',
  702. 'module' =>
  703. array (
  704. 0 => '404',
  705. 1 => NULL,
  706. 2 => NULL,
  707. ),
  708. )
  709. [ info ] [ HEADER ] array (
  710. 'priority' => 'i',
  711. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  712. 'accept-encoding' => 'gzip, deflate, br, zstd',
  713. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  714. 'sec-fetch-dest' => 'image',
  715. 'sec-fetch-mode' => 'no-cors',
  716. 'sec-fetch-site' => 'same-origin',
  717. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  718. 'sec-ch-ua-mobile' => '?0',
  719. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  720. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  721. 'sec-ch-ua-platform' => '"Windows"',
  722. 'host' => 'ts.shanghairongxuan.top',
  723. 'content-length' => '',
  724. 'content-type' => '',
  725. )
  726. [ info ] [ PARAM ] array (
  727. )
  728. [ info ] [ LOG ] INIT File
  729. ---------------------------------------------------------------
  730. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//uploads/20230306/f3f80c3170be88fdba192b968a699667.jpg
  731. [运行时间:0.037193s] [吞吐率:26.89req/s] [内存消耗:1,928.02kb] [文件加载:60]
  732. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000033s ]
  733. [ info ] [ CACHE ] INIT File
  734. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001213s ]
  735. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  736. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000208s ]
  737. [ info ] [ ROUTE ] array (
  738. 'type' => 'module',
  739. 'module' =>
  740. array (
  741. 0 => '404',
  742. 1 => NULL,
  743. 2 => NULL,
  744. ),
  745. )
  746. [ info ] [ HEADER ] array (
  747. 'priority' => 'i',
  748. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  749. 'accept-encoding' => 'gzip, deflate, br, zstd',
  750. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  751. 'sec-fetch-dest' => 'image',
  752. 'sec-fetch-mode' => 'no-cors',
  753. 'sec-fetch-site' => 'same-origin',
  754. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  755. 'sec-ch-ua-mobile' => '?0',
  756. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  757. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  758. 'sec-ch-ua-platform' => '"Windows"',
  759. 'host' => 'ts.shanghairongxuan.top',
  760. 'content-length' => '',
  761. 'content-type' => '',
  762. )
  763. [ info ] [ PARAM ] array (
  764. )
  765. [ info ] [ LOG ] INIT File
  766. ---------------------------------------------------------------
  767. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//uploads/20230306/1665d85e9d007dcba80b05b50c94c132.jpg
  768. [运行时间:0.039620s] [吞吐率:25.24req/s] [内存消耗:1,928.02kb] [文件加载:60]
  769. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000036s ]
  770. [ info ] [ CACHE ] INIT File
  771. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002494s ]
  772. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  773. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000206s ]
  774. [ info ] [ ROUTE ] array (
  775. 'type' => 'module',
  776. 'module' =>
  777. array (
  778. 0 => '404',
  779. 1 => NULL,
  780. 2 => NULL,
  781. ),
  782. )
  783. [ info ] [ HEADER ] array (
  784. 'priority' => 'i',
  785. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  786. 'accept-encoding' => 'gzip, deflate, br, zstd',
  787. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  788. 'sec-fetch-dest' => 'image',
  789. 'sec-fetch-mode' => 'no-cors',
  790. 'sec-fetch-site' => 'same-origin',
  791. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  792. 'sec-ch-ua-mobile' => '?0',
  793. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  794. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  795. 'sec-ch-ua-platform' => '"Windows"',
  796. 'host' => 'ts.shanghairongxuan.top',
  797. 'content-length' => '',
  798. 'content-type' => '',
  799. )
  800. [ info ] [ PARAM ] array (
  801. )
  802. [ info ] [ LOG ] INIT File
  803. ---------------------------------------------------------------
  804. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//uploads/20230305/7ebc8bf331d9e1223e9263a678b7e28e.png
  805. [运行时间:0.037570s] [吞吐率:26.62req/s] [内存消耗:1,928.02kb] [文件加载:60]
  806. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  807. [ info ] [ CACHE ] INIT File
  808. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002996s ]
  809. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  810. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000245s ]
  811. [ info ] [ ROUTE ] array (
  812. 'type' => 'module',
  813. 'module' =>
  814. array (
  815. 0 => '404',
  816. 1 => NULL,
  817. 2 => NULL,
  818. ),
  819. )
  820. [ info ] [ HEADER ] array (
  821. 'priority' => 'i',
  822. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  823. 'accept-encoding' => 'gzip, deflate, br, zstd',
  824. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  825. 'sec-fetch-dest' => 'image',
  826. 'sec-fetch-mode' => 'no-cors',
  827. 'sec-fetch-site' => 'same-origin',
  828. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  829. 'sec-ch-ua-mobile' => '?0',
  830. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  831. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  832. 'sec-ch-ua-platform' => '"Windows"',
  833. 'host' => 'ts.shanghairongxuan.top',
  834. 'content-length' => '',
  835. 'content-type' => '',
  836. )
  837. [ info ] [ PARAM ] array (
  838. )
  839. [ info ] [ LOG ] INIT File
  840. ---------------------------------------------------------------
  841. [ 2025-05-27T10:29:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//uploads/20230306/8403656320520aa7a778312fac8d35a7.jpg
  842. [运行时间:0.038988s] [吞吐率:25.65req/s] [内存消耗:1,928.02kb] [文件加载:60]
  843. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  844. [ info ] [ CACHE ] INIT File
  845. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001411s ]
  846. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  847. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000223s ]
  848. [ info ] [ ROUTE ] array (
  849. 'type' => 'module',
  850. 'module' =>
  851. array (
  852. 0 => '404',
  853. 1 => NULL,
  854. 2 => NULL,
  855. ),
  856. )
  857. [ info ] [ HEADER ] array (
  858. 'priority' => 'i',
  859. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  860. 'accept-encoding' => 'gzip, deflate, br, zstd',
  861. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  862. 'sec-fetch-dest' => 'image',
  863. 'sec-fetch-mode' => 'no-cors',
  864. 'sec-fetch-site' => 'same-origin',
  865. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  866. 'sec-ch-ua-mobile' => '?0',
  867. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  868. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  869. 'sec-ch-ua-platform' => '"Windows"',
  870. 'host' => 'ts.shanghairongxuan.top',
  871. 'content-length' => '',
  872. 'content-type' => '',
  873. )
  874. [ info ] [ PARAM ] array (
  875. )
  876. [ info ] [ LOG ] INIT File
  877. ---------------------------------------------------------------
  878. [ 2025-05-27T10:29:50+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/indexdata
  879. [运行时间:0.111509s] [吞吐率:8.97req/s] [内存消耗:4,072.49kb] [文件加载:83]
  880. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  881. [ info ] [ CACHE ] INIT File
  882. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001569s ]
  883. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  884. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000276s ]
  885. [ info ] [ ROUTE ] array (
  886. 'type' => 'module',
  887. 'module' =>
  888. array (
  889. 0 => 'api',
  890. 1 => 'video',
  891. 2 => 'indexdata',
  892. ),
  893. )
  894. [ info ] [ HEADER ] array (
  895. 'priority' => 'u=1, i',
  896. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  897. 'accept-encoding' => 'gzip, deflate, br, zstd',
  898. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  899. 'sec-fetch-dest' => 'empty',
  900. 'sec-fetch-mode' => 'cors',
  901. 'sec-fetch-site' => 'same-origin',
  902. 'accept' => '*/*',
  903. 'sec-ch-ua-mobile' => '?0',
  904. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  905. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0',
  906. 'sec-ch-ua-platform' => '"Windows"',
  907. 'host' => 'ts.shanghairongxuan.top',
  908. 'content-length' => '',
  909. 'content-type' => '',
  910. )
  911. [ info ] [ PARAM ] array (
  912. )
  913. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  914. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001359s ]
  915. [ info ] [ RUN ] app\api\controller\Video->indexdata[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  916. [ info ] [ DB ] INIT mysql
  917. [ info ] [ LOG ] INIT File
  918. ---------------------------------------------------------------
  919. [ 2025-05-27T10:29:51+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  920. [运行时间:0.074314s] [吞吐率:13.46req/s] [内存消耗:4,049.22kb] [文件加载:83]
  921. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  922. [ info ] [ CACHE ] INIT File
  923. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001406s ]
  924. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  925. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000318s ]
  926. [ info ] [ ROUTE ] array (
  927. 'type' => 'module',
  928. 'module' =>
  929. array (
  930. 0 => 'api',
  931. 1 => 'video',
  932. 2 => 'lists',
  933. ),
  934. )
  935. [ info ] [ HEADER ] array (
  936. 'priority' => 'u=1, i',
  937. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  938. 'accept-encoding' => 'gzip, deflate, br, zstd',
  939. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  940. 'sec-fetch-dest' => 'empty',
  941. 'sec-fetch-mode' => 'cors',
  942. 'sec-fetch-site' => 'same-origin',
  943. 'accept' => '*/*',
  944. 'sec-ch-ua-mobile' => '?1',
  945. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  946. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  947. 'sec-ch-ua-platform' => '"Android"',
  948. 'host' => 'ts.shanghairongxuan.top',
  949. 'content-length' => '',
  950. 'content-type' => '',
  951. )
  952. [ info ] [ PARAM ] array (
  953. 'limit' => '15',
  954. 'ishot' => '2',
  955. )
  956. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  957. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001601s ]
  958. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  959. [ info ] [ DB ] INIT mysql
  960. [ info ] [ LOG ] INIT File
  961. ---------------------------------------------------------------
  962. [ 2025-05-27T10:29:53+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  963. [运行时间:0.086852s] [吞吐率:11.51req/s] [内存消耗:4,049.22kb] [文件加载:83]
  964. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000031s ]
  965. [ info ] [ CACHE ] INIT File
  966. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001328s ]
  967. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  968. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000295s ]
  969. [ info ] [ ROUTE ] array (
  970. 'type' => 'module',
  971. 'module' =>
  972. array (
  973. 0 => 'api',
  974. 1 => 'video',
  975. 2 => 'lists',
  976. ),
  977. )
  978. [ info ] [ HEADER ] array (
  979. 'priority' => 'u=1, i',
  980. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  981. 'accept-encoding' => 'gzip, deflate, br, zstd',
  982. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  983. 'sec-fetch-dest' => 'empty',
  984. 'sec-fetch-mode' => 'cors',
  985. 'sec-fetch-site' => 'same-origin',
  986. 'accept' => '*/*',
  987. 'sec-ch-ua-mobile' => '?1',
  988. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  989. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  990. 'sec-ch-ua-platform' => '"Android"',
  991. 'host' => 'ts.shanghairongxuan.top',
  992. 'content-length' => '',
  993. 'content-type' => '',
  994. )
  995. [ info ] [ PARAM ] array (
  996. 'limit' => '15',
  997. 'ishot' => '2',
  998. )
  999. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1000. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001119s ]
  1001. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1002. [ info ] [ DB ] INIT mysql
  1003. [ info ] [ LOG ] INIT File
  1004. ---------------------------------------------------------------
  1005. [ 2025-05-27T10:33:14+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1006. [运行时间:0.105316s] [吞吐率:9.50req/s] [内存消耗:4,815.66kb] [文件加载:115]
  1007. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1008. [ info ] [ CACHE ] INIT File
  1009. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001396s ]
  1010. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1011. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000296s ]
  1012. [ info ] [ ROUTE ] array (
  1013. 'type' => 'module',
  1014. 'module' =>
  1015. array (
  1016. 0 => 'api',
  1017. 1 => 'user',
  1018. 2 => 'reg',
  1019. ),
  1020. )
  1021. [ info ] [ HEADER ] array (
  1022. 'priority' => 'u=1, i',
  1023. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1024. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1025. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1026. 'sec-fetch-dest' => 'empty',
  1027. 'sec-fetch-mode' => 'cors',
  1028. 'sec-fetch-site' => 'same-origin',
  1029. 'origin' => 'https://ts.shanghairongxuan.top',
  1030. 'accept' => '*/*',
  1031. 'sec-ch-ua-mobile' => '?1',
  1032. 'content-type' => 'application/x-www-form-urlencoded',
  1033. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1034. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1035. 'sec-ch-ua-platform' => '"Android"',
  1036. 'content-length' => '72',
  1037. 'host' => 'ts.shanghairongxuan.top',
  1038. )
  1039. [ info ] [ PARAM ] array (
  1040. 'mobile' => '13245678913',
  1041. 'username' => '13245678913',
  1042. 'password' => '123456',
  1043. 'pid' => '',
  1044. 'version' => 'web',
  1045. )
  1046. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1047. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001206s ]
  1048. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1049. [ info ] [ DB ] INIT mysql
  1050. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1051. [ info ] [ TOKEN ] INIT Mysql
  1052. [ info ] [ LOG ] INIT File
  1053. [ error ] [0]致命错误: Class 'Phactor\Key' not found[/www/wwwroot/ts.shanghairongxuan.top/vendor/fenguoz/tron-php/src/TRX.php:42]
  1054. ---------------------------------------------------------------
  1055. [ 2025-05-27T11:02:13+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/dashboard?ref=addtabs
  1056. [运行时间:0.054816s] [吞吐率:18.24req/s] [内存消耗:3,815.80kb] [文件加载:82]
  1057. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000066s ]
  1058. [ info ] [ CACHE ] INIT File
  1059. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001396s ]
  1060. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1061. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000203s ]
  1062. [ info ] [ ROUTE ] array (
  1063. 'type' => 'module',
  1064. 'module' =>
  1065. array (
  1066. 0 => 'admin',
  1067. 1 => 'dashboard',
  1068. 2 => NULL,
  1069. ),
  1070. )
  1071. [ info ] [ HEADER ] array (
  1072. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  1073. 'priority' => 'u=0, i',
  1074. 'accept-language' => 'zh-CN,zh;q=0.9',
  1075. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1076. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php',
  1077. 'sec-fetch-dest' => 'document',
  1078. 'sec-fetch-user' => '?1',
  1079. 'sec-fetch-mode' => 'navigate',
  1080. 'sec-fetch-site' => 'same-origin',
  1081. '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',
  1082. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  1083. 'upgrade-insecure-requests' => '1',
  1084. 'sec-ch-ua-platform' => '"Windows"',
  1085. 'sec-ch-ua-mobile' => '?0',
  1086. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  1087. 'host' => 'ts.shanghairongxuan.top',
  1088. 'content-length' => '',
  1089. 'content-type' => '',
  1090. )
  1091. [ info ] [ PARAM ] array (
  1092. 'ref' => 'addtabs',
  1093. )
  1094. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  1095. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001172s ]
  1096. [ info ] [ SESSION ] INIT array (
  1097. 'id' => '',
  1098. 'var_session_id' => '',
  1099. 'prefix' => 'think',
  1100. 'type' => '',
  1101. 'auto_start' => true,
  1102. )
  1103. [ info ] [ DB ] INIT mysql
  1104. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000208s ]
  1105. [ info ] [ LOG ] INIT File
  1106. ---------------------------------------------------------------
  1107. [ 2025-05-27T11:02:13+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/index/index
  1108. [运行时间:0.104171s] [吞吐率:9.60req/s] [内存消耗:4,411.65kb] [文件加载:97]
  1109. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  1110. [ info ] [ CACHE ] INIT File
  1111. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001467s ]
  1112. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1113. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000300s ]
  1114. [ info ] [ ROUTE ] array (
  1115. 'type' => 'module',
  1116. 'module' =>
  1117. array (
  1118. 0 => 'admin',
  1119. 1 => 'index',
  1120. 2 => 'index',
  1121. ),
  1122. )
  1123. [ info ] [ HEADER ] array (
  1124. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  1125. 'priority' => 'u=0, i',
  1126. 'accept-language' => 'zh-CN,zh;q=0.9',
  1127. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1128. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/login?url=%2Ftannuoyun.php',
  1129. 'sec-ch-ua-platform' => '"Windows"',
  1130. 'sec-ch-ua-mobile' => '?0',
  1131. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  1132. 'sec-fetch-dest' => 'document',
  1133. 'sec-fetch-user' => '?1',
  1134. 'sec-fetch-mode' => 'navigate',
  1135. 'sec-fetch-site' => 'same-origin',
  1136. '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',
  1137. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  1138. 'upgrade-insecure-requests' => '1',
  1139. 'host' => 'ts.shanghairongxuan.top',
  1140. 'content-length' => '',
  1141. 'content-type' => '',
  1142. )
  1143. [ info ] [ PARAM ] array (
  1144. )
  1145. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  1146. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001068s ]
  1147. [ info ] [ SESSION ] INIT array (
  1148. 'id' => '',
  1149. 'var_session_id' => '',
  1150. 'prefix' => 'think',
  1151. 'type' => '',
  1152. 'auto_start' => true,
  1153. )
  1154. [ info ] [ DB ] INIT mysql
  1155. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  1156. [ info ] [ RUN ] app\admin\controller\Index->index[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Index.php ]
  1157. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/view/index/index.html [ array (
  1158. 0 => 'breadcrumb',
  1159. 1 => 'site',
  1160. 2 => 'config',
  1161. 3 => 'auth',
  1162. 4 => 'admin',
  1163. 5 => 'menulist',
  1164. 6 => 'navlist',
  1165. 7 => 'fixedmenu',
  1166. 8 => 'referermenu',
  1167. 9 => 'title',
  1168. ) ]
  1169. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000126s ]
  1170. [ info ] [ LOG ] INIT File
  1171. ---------------------------------------------------------------
  1172. [ 2025-05-27T11:02:14+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/dashboard?addtabs=1
  1173. [运行时间:0.066646s] [吞吐率:15.00req/s] [内存消耗:4,189.65kb] [文件加载:86]
  1174. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  1175. [ info ] [ CACHE ] INIT File
  1176. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001162s ]
  1177. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1178. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000255s ]
  1179. [ info ] [ ROUTE ] array (
  1180. 'type' => 'module',
  1181. 'module' =>
  1182. array (
  1183. 0 => 'admin',
  1184. 1 => 'dashboard',
  1185. 2 => NULL,
  1186. ),
  1187. )
  1188. [ info ] [ HEADER ] array (
  1189. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  1190. 'priority' => 'u=0, i',
  1191. 'accept-language' => 'zh-CN,zh;q=0.9',
  1192. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1193. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/index',
  1194. 'sec-fetch-dest' => 'iframe',
  1195. 'sec-fetch-mode' => 'navigate',
  1196. 'sec-fetch-site' => 'same-origin',
  1197. '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',
  1198. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  1199. 'upgrade-insecure-requests' => '1',
  1200. 'sec-ch-ua-platform' => '"Windows"',
  1201. 'sec-ch-ua-mobile' => '?0',
  1202. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  1203. 'host' => 'ts.shanghairongxuan.top',
  1204. 'content-length' => '',
  1205. 'content-type' => '',
  1206. )
  1207. [ info ] [ PARAM ] array (
  1208. 'addtabs' => '1',
  1209. )
  1210. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  1211. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001223s ]
  1212. [ info ] [ SESSION ] INIT array (
  1213. 'id' => '',
  1214. 'var_session_id' => '',
  1215. 'prefix' => 'think',
  1216. 'type' => '',
  1217. 'auto_start' => true,
  1218. )
  1219. [ info ] [ DB ] INIT mysql
  1220. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/dashboard.php
  1221. [ info ] [ RUN ] app\admin\controller\Dashboard->index[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Dashboard.php ]
  1222. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/view/dashboard/index.html [ array (
  1223. 0 => 'breadcrumb',
  1224. 1 => 'site',
  1225. 2 => 'config',
  1226. 3 => 'auth',
  1227. 4 => 'admin',
  1228. 5 => 'totaluser',
  1229. 6 => 'totalviews',
  1230. 7 => 'totalorder',
  1231. 8 => 'totalorderamount',
  1232. 9 => 'todayuserlogin',
  1233. 10 => 'todayusersignup',
  1234. 11 => 'todayorder',
  1235. 12 => 'unsettleorder',
  1236. 13 => 'sevendnu',
  1237. 14 => 'sevendau',
  1238. 15 => 'paylist',
  1239. 16 => 'createlist',
  1240. 17 => 'addonversion',
  1241. 18 => 'uploadmode',
  1242. ) ]
  1243. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000331s ]
  1244. [ info ] [ LOG ] INIT File
  1245. ---------------------------------------------------------------
  1246. [ 2025-05-27T11:02:17+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/ajax/lang?callback=define&controllername=dashboard&v=1748314934
  1247. [运行时间:0.056356s] [吞吐率:17.74req/s] [内存消耗:4,186.49kb] [文件加载:85]
  1248. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000030s ]
  1249. [ info ] [ CACHE ] INIT File
  1250. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001351s ]
  1251. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1252. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000254s ]
  1253. [ info ] [ ROUTE ] array (
  1254. 'type' => 'module',
  1255. 'module' =>
  1256. array (
  1257. 0 => 'admin',
  1258. 1 => 'ajax',
  1259. 2 => 'lang',
  1260. ),
  1261. )
  1262. [ info ] [ HEADER ] array (
  1263. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  1264. 'accept-language' => 'zh-CN,zh;q=0.9',
  1265. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1266. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/dashboard?addtabs=1',
  1267. 'sec-fetch-dest' => 'script',
  1268. 'sec-fetch-mode' => 'no-cors',
  1269. 'sec-fetch-site' => 'same-origin',
  1270. 'accept' => '*/*',
  1271. 'sec-ch-ua-mobile' => '?0',
  1272. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  1273. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  1274. 'sec-ch-ua-platform' => '"Windows"',
  1275. 'host' => 'ts.shanghairongxuan.top',
  1276. 'content-length' => '',
  1277. 'content-type' => '',
  1278. )
  1279. [ info ] [ PARAM ] array (
  1280. 'callback' => 'define',
  1281. 'controllername' => 'dashboard',
  1282. 'v' => '1748314934',
  1283. )
  1284. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  1285. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001295s ]
  1286. [ info ] [ SESSION ] INIT array (
  1287. 'id' => '',
  1288. 'var_session_id' => '',
  1289. 'prefix' => 'think',
  1290. 'type' => '',
  1291. 'auto_start' => true,
  1292. )
  1293. [ info ] [ DB ] INIT mysql
  1294. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/ajax.php
  1295. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Ajax.php ]
  1296. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/dashboard.php
  1297. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000404s ]
  1298. [ info ] [ LOG ] INIT File
  1299. ---------------------------------------------------------------
  1300. [ 2025-05-27T11:02:17+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/tannuoyun.php/ajax/lang?callback=define&controllername=index&v=1748314933
  1301. [运行时间:0.077329s] [吞吐率:12.93req/s] [内存消耗:4,188.18kb] [文件加载:85]
  1302. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  1303. [ info ] [ CACHE ] INIT File
  1304. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001979s ]
  1305. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1306. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000381s ]
  1307. [ info ] [ ROUTE ] array (
  1308. 'type' => 'module',
  1309. 'module' =>
  1310. array (
  1311. 0 => 'admin',
  1312. 1 => 'ajax',
  1313. 2 => 'lang',
  1314. ),
  1315. )
  1316. [ info ] [ HEADER ] array (
  1317. 'cookie' => 'PHPSESSID=ntf1g25nbhsoq3p9b4krqn3j5n; keeplogin=1%7C86400%7C1748392940%7C11b63e5ade9d264c185199ff476de294',
  1318. 'accept-language' => 'zh-CN,zh;q=0.9',
  1319. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1320. 'referer' => 'https://ts.shanghairongxuan.top/tannuoyun.php/index/index',
  1321. 'sec-fetch-dest' => 'script',
  1322. 'sec-fetch-mode' => 'no-cors',
  1323. 'sec-fetch-site' => 'same-origin',
  1324. 'accept' => '*/*',
  1325. 'sec-ch-ua-mobile' => '?0',
  1326. 'sec-ch-ua' => '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  1327. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  1328. 'sec-ch-ua-platform' => '"Windows"',
  1329. 'host' => 'ts.shanghairongxuan.top',
  1330. 'content-length' => '',
  1331. 'content-type' => '',
  1332. )
  1333. [ info ] [ PARAM ] array (
  1334. 'callback' => 'define',
  1335. 'controllername' => 'index',
  1336. 'v' => '1748314933',
  1337. )
  1338. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn.php
  1339. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001653s ]
  1340. [ info ] [ SESSION ] INIT array (
  1341. 'id' => '',
  1342. 'var_session_id' => '',
  1343. 'prefix' => 'think',
  1344. 'type' => '',
  1345. 'auto_start' => true,
  1346. )
  1347. [ info ] [ DB ] INIT mysql
  1348. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/ajax.php
  1349. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/ts.shanghairongxuan.top/application/admin/controller/Ajax.php ]
  1350. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/admin/lang/zh-cn/index.php
  1351. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000204s ]
  1352. [ info ] [ LOG ] INIT File
  1353. ---------------------------------------------------------------
  1354. [ 2025-05-27T11:06:05+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1355. [运行时间:0.514428s] [吞吐率:1.94req/s] [内存消耗:5,046.39kb] [文件加载:123]
  1356. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1357. [ info ] [ CACHE ] INIT File
  1358. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001339s ]
  1359. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1360. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000279s ]
  1361. [ info ] [ ROUTE ] array (
  1362. 'type' => 'module',
  1363. 'module' =>
  1364. array (
  1365. 0 => 'api',
  1366. 1 => 'user',
  1367. 2 => 'reg',
  1368. ),
  1369. )
  1370. [ info ] [ HEADER ] array (
  1371. 'priority' => 'u=1, i',
  1372. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1373. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1374. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1375. 'sec-fetch-dest' => 'empty',
  1376. 'sec-fetch-mode' => 'cors',
  1377. 'sec-fetch-site' => 'same-origin',
  1378. 'origin' => 'https://ts.shanghairongxuan.top',
  1379. 'accept' => '*/*',
  1380. 'sec-ch-ua-mobile' => '?1',
  1381. 'content-type' => 'application/x-www-form-urlencoded',
  1382. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1383. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1384. 'sec-ch-ua-platform' => '"Android"',
  1385. 'content-length' => '72',
  1386. 'host' => 'ts.shanghairongxuan.top',
  1387. )
  1388. [ info ] [ PARAM ] array (
  1389. 'mobile' => '13245678913',
  1390. 'username' => '13245678913',
  1391. 'password' => '123456',
  1392. 'pid' => '',
  1393. 'version' => 'web',
  1394. )
  1395. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1396. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001723s ]
  1397. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1398. [ info ] [ DB ] INIT mysql
  1399. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1400. [ info ] [ TOKEN ] INIT Mysql
  1401. [ info ] [ LOG ] INIT File
  1402. ---------------------------------------------------------------
  1403. [ 2025-05-27T11:21:28+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1404. [运行时间:0.600456s] [吞吐率:1.67req/s] [内存消耗:7,018.38kb] [文件加载:174]
  1405. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  1406. [ info ] [ CACHE ] INIT File
  1407. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001106s ]
  1408. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1409. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000244s ]
  1410. [ info ] [ ROUTE ] array (
  1411. 'type' => 'module',
  1412. 'module' =>
  1413. array (
  1414. 0 => 'api',
  1415. 1 => 'user',
  1416. 2 => 'reg',
  1417. ),
  1418. )
  1419. [ info ] [ HEADER ] array (
  1420. 'priority' => 'u=1, i',
  1421. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1422. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1423. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1424. 'sec-fetch-dest' => 'empty',
  1425. 'sec-fetch-mode' => 'cors',
  1426. 'sec-fetch-site' => 'same-origin',
  1427. 'origin' => 'https://ts.shanghairongxuan.top',
  1428. 'accept' => '*/*',
  1429. 'sec-ch-ua-mobile' => '?1',
  1430. 'content-type' => 'application/x-www-form-urlencoded',
  1431. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1432. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1433. 'sec-ch-ua-platform' => '"Android"',
  1434. 'content-length' => '72',
  1435. 'host' => 'ts.shanghairongxuan.top',
  1436. )
  1437. [ info ] [ PARAM ] array (
  1438. 'mobile' => '13245678913',
  1439. 'username' => '13245678913',
  1440. 'password' => '123456',
  1441. 'pid' => '',
  1442. 'version' => 'web',
  1443. )
  1444. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1445. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001331s ]
  1446. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1447. [ info ] [ DB ] INIT mysql
  1448. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1449. [ info ] [ TOKEN ] INIT Mysql
  1450. [ info ] [ LOG ] INIT File
  1451. ---------------------------------------------------------------
  1452. [ 2025-05-27T11:27:45+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1453. [运行时间:0.584356s] [吞吐率:1.71req/s] [内存消耗:7,031.55kb] [文件加载:172]
  1454. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  1455. [ info ] [ CACHE ] INIT File
  1456. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001414s ]
  1457. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1458. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000305s ]
  1459. [ info ] [ ROUTE ] array (
  1460. 'type' => 'module',
  1461. 'module' =>
  1462. array (
  1463. 0 => 'api',
  1464. 1 => 'user',
  1465. 2 => 'reg',
  1466. ),
  1467. )
  1468. [ info ] [ HEADER ] array (
  1469. 'priority' => 'u=1, i',
  1470. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1471. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1472. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1473. 'sec-fetch-dest' => 'empty',
  1474. 'sec-fetch-mode' => 'cors',
  1475. 'sec-fetch-site' => 'same-origin',
  1476. 'origin' => 'https://ts.shanghairongxuan.top',
  1477. 'accept' => '*/*',
  1478. 'sec-ch-ua-mobile' => '?1',
  1479. 'content-type' => 'application/x-www-form-urlencoded',
  1480. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1481. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1482. 'sec-ch-ua-platform' => '"Android"',
  1483. 'content-length' => '72',
  1484. 'host' => 'ts.shanghairongxuan.top',
  1485. )
  1486. [ info ] [ PARAM ] array (
  1487. 'mobile' => '13245678913',
  1488. 'username' => '13245678913',
  1489. 'password' => '123456',
  1490. 'pid' => '',
  1491. 'version' => 'web',
  1492. )
  1493. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1494. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001324s ]
  1495. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1496. [ info ] [ DB ] INIT mysql
  1497. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1498. [ info ] [ TOKEN ] INIT Mysql
  1499. [ info ] [ LOG ] INIT File
  1500. ---------------------------------------------------------------
  1501. [ 2025-05-27T11:51:24+08:00 ] 205.210.31.224 GET ts.shanghairongxuan.top/
  1502. [运行时间:0.041855s] [吞吐率:23.89req/s] [内存消耗:2,881.05kb] [文件加载:74]
  1503. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000037s ]
  1504. [ info ] [ CACHE ] INIT File
  1505. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001195s ]
  1506. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1507. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000256s ]
  1508. [ info ] [ ROUTE ] array (
  1509. 'type' => 'module',
  1510. 'module' =>
  1511. array (
  1512. 0 => '',
  1513. 1 => NULL,
  1514. 2 => NULL,
  1515. ),
  1516. )
  1517. [ info ] [ HEADER ] array (
  1518. 'user-agent' => 'Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com',
  1519. 'host' => 'ts.shanghairongxuan.top',
  1520. 'content-length' => '',
  1521. 'content-type' => '',
  1522. )
  1523. [ info ] [ PARAM ] array (
  1524. )
  1525. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  1526. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001592s ]
  1527. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn/index.php
  1528. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Index.php ]
  1529. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/view/index/index.html [ array (
  1530. 0 => 'user',
  1531. 1 => 'site',
  1532. 2 => 'config',
  1533. ) ]
  1534. [ info ] [ LOG ] INIT File
  1535. ---------------------------------------------------------------
  1536. [ 2025-05-27T13:02:17+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1537. [运行时间:0.621501s] [吞吐率:1.61req/s] [内存消耗:7,034.80kb] [文件加载:172]
  1538. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  1539. [ info ] [ CACHE ] INIT File
  1540. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001564s ]
  1541. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1542. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000245s ]
  1543. [ info ] [ ROUTE ] array (
  1544. 'type' => 'module',
  1545. 'module' =>
  1546. array (
  1547. 0 => 'api',
  1548. 1 => 'user',
  1549. 2 => 'reg',
  1550. ),
  1551. )
  1552. [ info ] [ HEADER ] array (
  1553. 'priority' => 'u=1, i',
  1554. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1555. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1556. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1557. 'sec-fetch-dest' => 'empty',
  1558. 'sec-fetch-mode' => 'cors',
  1559. 'sec-fetch-site' => 'same-origin',
  1560. 'origin' => 'https://ts.shanghairongxuan.top',
  1561. 'accept' => '*/*',
  1562. 'sec-ch-ua-mobile' => '?1',
  1563. 'content-type' => 'application/x-www-form-urlencoded',
  1564. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1565. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1566. 'sec-ch-ua-platform' => '"Android"',
  1567. 'content-length' => '72',
  1568. 'host' => 'ts.shanghairongxuan.top',
  1569. )
  1570. [ info ] [ PARAM ] array (
  1571. 'mobile' => '13245678913',
  1572. 'username' => '13245678913',
  1573. 'password' => '123456',
  1574. 'pid' => '',
  1575. 'version' => 'web',
  1576. )
  1577. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1578. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001708s ]
  1579. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1580. [ info ] [ DB ] INIT mysql
  1581. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1582. [ info ] [ TOKEN ] INIT Mysql
  1583. [ info ] [ LOG ] INIT File
  1584. ---------------------------------------------------------------
  1585. [ 2025-05-27T13:13:30+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1586. [运行时间:0.581427s] [吞吐率:1.72req/s] [内存消耗:7,036.06kb] [文件加载:172]
  1587. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
  1588. [ info ] [ CACHE ] INIT File
  1589. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001334s ]
  1590. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1591. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000275s ]
  1592. [ info ] [ ROUTE ] array (
  1593. 'type' => 'module',
  1594. 'module' =>
  1595. array (
  1596. 0 => 'api',
  1597. 1 => 'user',
  1598. 2 => 'reg',
  1599. ),
  1600. )
  1601. [ info ] [ HEADER ] array (
  1602. 'priority' => 'u=1, i',
  1603. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1604. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1605. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1606. 'sec-fetch-dest' => 'empty',
  1607. 'sec-fetch-mode' => 'cors',
  1608. 'sec-fetch-site' => 'same-origin',
  1609. 'origin' => 'https://ts.shanghairongxuan.top',
  1610. 'accept' => '*/*',
  1611. 'sec-ch-ua-mobile' => '?1',
  1612. 'content-type' => 'application/x-www-form-urlencoded',
  1613. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1614. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1615. 'sec-ch-ua-platform' => '"Android"',
  1616. 'content-length' => '72',
  1617. 'host' => 'ts.shanghairongxuan.top',
  1618. )
  1619. [ info ] [ PARAM ] array (
  1620. 'mobile' => '13245678913',
  1621. 'username' => '13245678913',
  1622. 'password' => '123456',
  1623. 'pid' => '',
  1624. 'version' => 'web',
  1625. )
  1626. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1627. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001438s ]
  1628. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1629. [ info ] [ DB ] INIT mysql
  1630. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1631. [ info ] [ TOKEN ] INIT Mysql
  1632. [ info ] [ LOG ] INIT File
  1633. ---------------------------------------------------------------
  1634. [ 2025-05-27T13:24:47+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1635. [运行时间:0.560718s] [吞吐率:1.78req/s] [内存消耗:7,028.95kb] [文件加载:171]
  1636. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1637. [ info ] [ CACHE ] INIT File
  1638. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001092s ]
  1639. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1640. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000238s ]
  1641. [ info ] [ ROUTE ] array (
  1642. 'type' => 'module',
  1643. 'module' =>
  1644. array (
  1645. 0 => 'api',
  1646. 1 => 'user',
  1647. 2 => 'reg',
  1648. ),
  1649. )
  1650. [ info ] [ HEADER ] array (
  1651. 'priority' => 'u=1, i',
  1652. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1653. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1654. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1655. 'sec-fetch-dest' => 'empty',
  1656. 'sec-fetch-mode' => 'cors',
  1657. 'sec-fetch-site' => 'same-origin',
  1658. 'origin' => 'https://ts.shanghairongxuan.top',
  1659. 'accept' => '*/*',
  1660. 'sec-ch-ua-mobile' => '?1',
  1661. 'content-type' => 'application/x-www-form-urlencoded',
  1662. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1663. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1664. 'sec-ch-ua-platform' => '"Android"',
  1665. 'content-length' => '72',
  1666. 'host' => 'ts.shanghairongxuan.top',
  1667. )
  1668. [ info ] [ PARAM ] array (
  1669. 'mobile' => '13245678913',
  1670. 'username' => '13245678913',
  1671. 'password' => '123456',
  1672. 'pid' => '',
  1673. 'version' => 'web',
  1674. )
  1675. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1676. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001126s ]
  1677. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1678. [ info ] [ DB ] INIT mysql
  1679. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1680. [ info ] [ TOKEN ] INIT Mysql
  1681. [ info ] [ LOG ] INIT File
  1682. ---------------------------------------------------------------
  1683. [ 2025-05-27T13:44:38+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  1684. [运行时间:0.077250s] [吞吐率:12.94req/s] [内存消耗:4,049.23kb] [文件加载:83]
  1685. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  1686. [ info ] [ CACHE ] INIT File
  1687. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001191s ]
  1688. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1689. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000361s ]
  1690. [ info ] [ ROUTE ] array (
  1691. 'type' => 'module',
  1692. 'module' =>
  1693. array (
  1694. 0 => 'api',
  1695. 1 => 'video',
  1696. 2 => 'lists',
  1697. ),
  1698. )
  1699. [ info ] [ HEADER ] array (
  1700. 'priority' => 'u=1, i',
  1701. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1702. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1703. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1704. 'sec-fetch-dest' => 'empty',
  1705. 'sec-fetch-mode' => 'cors',
  1706. 'sec-fetch-site' => 'same-origin',
  1707. 'accept' => '*/*',
  1708. 'sec-ch-ua-mobile' => '?1',
  1709. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1710. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1711. 'sec-ch-ua-platform' => '"Android"',
  1712. 'host' => 'ts.shanghairongxuan.top',
  1713. 'content-length' => '',
  1714. 'content-type' => '',
  1715. )
  1716. [ info ] [ PARAM ] array (
  1717. 'limit' => '15',
  1718. 'ishot' => '2',
  1719. )
  1720. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1721. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001616s ]
  1722. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1723. [ info ] [ DB ] INIT mysql
  1724. [ info ] [ LOG ] INIT File
  1725. ---------------------------------------------------------------
  1726. [ 2025-05-27T13:44:49+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1727. [运行时间:0.594124s] [吞吐率:1.68req/s] [内存消耗:7,029.30kb] [文件加载:171]
  1728. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000094s ]
  1729. [ info ] [ CACHE ] INIT File
  1730. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001383s ]
  1731. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1732. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000344s ]
  1733. [ info ] [ ROUTE ] array (
  1734. 'type' => 'module',
  1735. 'module' =>
  1736. array (
  1737. 0 => 'api',
  1738. 1 => 'user',
  1739. 2 => 'reg',
  1740. ),
  1741. )
  1742. [ info ] [ HEADER ] array (
  1743. 'priority' => 'u=1, i',
  1744. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1745. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1746. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1747. 'sec-fetch-dest' => 'empty',
  1748. 'sec-fetch-mode' => 'cors',
  1749. 'sec-fetch-site' => 'same-origin',
  1750. 'origin' => 'https://ts.shanghairongxuan.top',
  1751. 'accept' => '*/*',
  1752. 'sec-ch-ua-mobile' => '?1',
  1753. 'content-type' => 'application/x-www-form-urlencoded',
  1754. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1755. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1756. 'sec-ch-ua-platform' => '"Android"',
  1757. 'content-length' => '72',
  1758. 'host' => 'ts.shanghairongxuan.top',
  1759. )
  1760. [ info ] [ PARAM ] array (
  1761. 'mobile' => '13245678913',
  1762. 'username' => '13245678913',
  1763. 'password' => '123456',
  1764. 'pid' => '',
  1765. 'version' => 'web',
  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.002074s ]
  1769. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1770. [ info ] [ DB ] INIT mysql
  1771. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1772. [ info ] [ TOKEN ] INIT Mysql
  1773. [ info ] [ LOG ] INIT File
  1774. ---------------------------------------------------------------
  1775. [ 2025-05-27T14:07:28+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  1776. [运行时间:0.093335s] [吞吐率:10.71req/s] [内存消耗:4,049.23kb] [文件加载:83]
  1777. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  1778. [ info ] [ CACHE ] INIT File
  1779. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001458s ]
  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.000298s ]
  1782. [ info ] [ ROUTE ] array (
  1783. 'type' => 'module',
  1784. 'module' =>
  1785. array (
  1786. 0 => 'api',
  1787. 1 => 'video',
  1788. 2 => 'lists',
  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' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1802. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.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. 'limit' => '15',
  1810. 'ishot' => '2',
  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.001497s ]
  1814. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  1815. [ info ] [ DB ] INIT mysql
  1816. [ info ] [ LOG ] INIT File
  1817. ---------------------------------------------------------------
  1818. [ 2025-05-27T14:07:48+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1819. [运行时间:0.415366s] [吞吐率:2.41req/s] [内存消耗:5,112.09kb] [文件加载:117]
  1820. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  1821. [ info ] [ CACHE ] INIT File
  1822. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001345s ]
  1823. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1824. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000225s ]
  1825. [ info ] [ ROUTE ] array (
  1826. 'type' => 'module',
  1827. 'module' =>
  1828. array (
  1829. 0 => 'api',
  1830. 1 => 'user',
  1831. 2 => 'reg',
  1832. ),
  1833. )
  1834. [ info ] [ HEADER ] array (
  1835. 'priority' => 'u=1, i',
  1836. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1837. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1838. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1839. 'sec-fetch-dest' => 'empty',
  1840. 'sec-fetch-mode' => 'cors',
  1841. 'sec-fetch-site' => 'same-origin',
  1842. 'origin' => 'https://ts.shanghairongxuan.top',
  1843. 'accept' => '*/*',
  1844. 'sec-ch-ua-mobile' => '?1',
  1845. 'content-type' => 'application/x-www-form-urlencoded',
  1846. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1847. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1848. 'sec-ch-ua-platform' => '"Android"',
  1849. 'content-length' => '72',
  1850. 'host' => 'ts.shanghairongxuan.top',
  1851. )
  1852. [ info ] [ PARAM ] array (
  1853. 'mobile' => '13245678913',
  1854. 'username' => '13245678913',
  1855. 'password' => '123456',
  1856. 'pid' => '',
  1857. 'version' => 'web',
  1858. )
  1859. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1860. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001395s ]
  1861. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1862. [ info ] [ DB ] INIT mysql
  1863. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1864. [ info ] [ TOKEN ] INIT Mysql
  1865. [ info ] [ LOG ] INIT File
  1866. ---------------------------------------------------------------
  1867. [ 2025-05-27T14:37:23+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1868. [运行时间:0.404452s] [吞吐率:2.47req/s] [内存消耗:5,112.09kb] [文件加载:117]
  1869. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  1870. [ info ] [ CACHE ] INIT File
  1871. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001201s ]
  1872. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1873. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000240s ]
  1874. [ info ] [ ROUTE ] array (
  1875. 'type' => 'module',
  1876. 'module' =>
  1877. array (
  1878. 0 => 'api',
  1879. 1 => 'user',
  1880. 2 => 'reg',
  1881. ),
  1882. )
  1883. [ info ] [ HEADER ] array (
  1884. 'priority' => 'u=1, i',
  1885. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1886. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1887. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1888. 'sec-fetch-dest' => 'empty',
  1889. 'sec-fetch-mode' => 'cors',
  1890. 'sec-fetch-site' => 'same-origin',
  1891. 'origin' => 'https://ts.shanghairongxuan.top',
  1892. 'accept' => '*/*',
  1893. 'sec-ch-ua-mobile' => '?1',
  1894. 'content-type' => 'application/x-www-form-urlencoded',
  1895. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1896. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1897. 'sec-ch-ua-platform' => '"Android"',
  1898. 'content-length' => '72',
  1899. 'host' => 'ts.shanghairongxuan.top',
  1900. )
  1901. [ info ] [ PARAM ] array (
  1902. 'mobile' => '13245678913',
  1903. 'username' => '13245678913',
  1904. 'password' => '123456',
  1905. 'pid' => '',
  1906. 'version' => 'web',
  1907. )
  1908. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1909. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001669s ]
  1910. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1911. [ info ] [ DB ] INIT mysql
  1912. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1913. [ info ] [ TOKEN ] INIT Mysql
  1914. [ info ] [ LOG ] INIT File
  1915. ---------------------------------------------------------------
  1916. [ 2025-05-27T14:37:56+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1917. [运行时间:0.484690s] [吞吐率:2.06req/s] [内存消耗:5,112.09kb] [文件加载:117]
  1918. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1919. [ info ] [ CACHE ] INIT File
  1920. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001425s ]
  1921. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1922. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000238s ]
  1923. [ info ] [ ROUTE ] array (
  1924. 'type' => 'module',
  1925. 'module' =>
  1926. array (
  1927. 0 => 'api',
  1928. 1 => 'user',
  1929. 2 => 'reg',
  1930. ),
  1931. )
  1932. [ info ] [ HEADER ] array (
  1933. 'priority' => 'u=1, i',
  1934. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1935. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1936. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1937. 'sec-fetch-dest' => 'empty',
  1938. 'sec-fetch-mode' => 'cors',
  1939. 'sec-fetch-site' => 'same-origin',
  1940. 'origin' => 'https://ts.shanghairongxuan.top',
  1941. 'accept' => '*/*',
  1942. 'sec-ch-ua-mobile' => '?1',
  1943. 'content-type' => 'application/x-www-form-urlencoded',
  1944. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1945. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1946. 'sec-ch-ua-platform' => '"Android"',
  1947. 'content-length' => '72',
  1948. 'host' => 'ts.shanghairongxuan.top',
  1949. )
  1950. [ info ] [ PARAM ] array (
  1951. 'mobile' => '13245678913',
  1952. 'username' => '13245678913',
  1953. 'password' => '123456',
  1954. 'pid' => '',
  1955. 'version' => 'web',
  1956. )
  1957. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  1958. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001345s ]
  1959. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  1960. [ info ] [ DB ] INIT mysql
  1961. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  1962. [ info ] [ TOKEN ] INIT Mysql
  1963. [ info ] [ LOG ] INIT File
  1964. ---------------------------------------------------------------
  1965. [ 2025-05-27T14:56:02+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  1966. [运行时间:0.426204s] [吞吐率:2.35req/s] [内存消耗:5,112.09kb] [文件加载:117]
  1967. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1968. [ info ] [ CACHE ] INIT File
  1969. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001139s ]
  1970. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  1971. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000280s ]
  1972. [ info ] [ ROUTE ] array (
  1973. 'type' => 'module',
  1974. 'module' =>
  1975. array (
  1976. 0 => 'api',
  1977. 1 => 'user',
  1978. 2 => 'reg',
  1979. ),
  1980. )
  1981. [ info ] [ HEADER ] array (
  1982. 'priority' => 'u=1, i',
  1983. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  1984. 'accept-encoding' => 'gzip, deflate, br, zstd',
  1985. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  1986. 'sec-fetch-dest' => 'empty',
  1987. 'sec-fetch-mode' => 'cors',
  1988. 'sec-fetch-site' => 'same-origin',
  1989. 'origin' => 'https://ts.shanghairongxuan.top',
  1990. 'accept' => '*/*',
  1991. 'sec-ch-ua-mobile' => '?1',
  1992. 'content-type' => 'application/x-www-form-urlencoded',
  1993. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  1994. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  1995. 'sec-ch-ua-platform' => '"Android"',
  1996. 'content-length' => '72',
  1997. 'host' => 'ts.shanghairongxuan.top',
  1998. )
  1999. [ info ] [ PARAM ] array (
  2000. 'mobile' => '13245678913',
  2001. 'username' => '13245678913',
  2002. 'password' => '123456',
  2003. 'pid' => '',
  2004. 'version' => 'web',
  2005. )
  2006. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2007. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001455s ]
  2008. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2009. [ info ] [ DB ] INIT mysql
  2010. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2011. [ info ] [ TOKEN ] INIT Mysql
  2012. [ info ] [ LOG ] INIT File
  2013. ---------------------------------------------------------------
  2014. [ 2025-05-27T15:33:18+08:00 ] 198.235.24.78 GET ts.shanghairongxuan.top/
  2015. [运行时间:0.044676s] [吞吐率:22.38req/s] [内存消耗:2,881.01kb] [文件加载:74]
  2016. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  2017. [ info ] [ CACHE ] INIT File
  2018. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001511s ]
  2019. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2020. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000260s ]
  2021. [ info ] [ ROUTE ] array (
  2022. 'type' => 'module',
  2023. 'module' =>
  2024. array (
  2025. 0 => '',
  2026. 1 => NULL,
  2027. 2 => NULL,
  2028. ),
  2029. )
  2030. [ info ] [ HEADER ] array (
  2031. 'user-agent' => 'Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com',
  2032. 'host' => 'ts.shanghairongxuan.top',
  2033. 'content-length' => '',
  2034. 'content-type' => '',
  2035. )
  2036. [ info ] [ PARAM ] array (
  2037. )
  2038. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  2039. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001718s ]
  2040. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn/index.php
  2041. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Index.php ]
  2042. [ info ] [ VIEW ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/view/index/index.html [ array (
  2043. 0 => 'user',
  2044. 1 => 'site',
  2045. 2 => 'config',
  2046. ) ]
  2047. [ info ] [ LOG ] INIT File
  2048. ---------------------------------------------------------------
  2049. [ 2025-05-27T15:34:52+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  2050. [运行时间:0.449498s] [吞吐率:2.22req/s] [内存消耗:5,112.09kb] [文件加载:117]
  2051. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000369s ]
  2052. [ info ] [ CACHE ] INIT File
  2053. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001230s ]
  2054. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2055. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000272s ]
  2056. [ info ] [ ROUTE ] array (
  2057. 'type' => 'module',
  2058. 'module' =>
  2059. array (
  2060. 0 => 'api',
  2061. 1 => 'user',
  2062. 2 => 'reg',
  2063. ),
  2064. )
  2065. [ info ] [ HEADER ] array (
  2066. 'priority' => 'u=1, i',
  2067. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2068. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2069. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2070. 'sec-fetch-dest' => 'empty',
  2071. 'sec-fetch-mode' => 'cors',
  2072. 'sec-fetch-site' => 'same-origin',
  2073. 'origin' => 'https://ts.shanghairongxuan.top',
  2074. 'accept' => '*/*',
  2075. 'sec-ch-ua-mobile' => '?1',
  2076. 'content-type' => 'application/x-www-form-urlencoded',
  2077. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2078. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2079. 'sec-ch-ua-platform' => '"Android"',
  2080. 'content-length' => '72',
  2081. 'host' => 'ts.shanghairongxuan.top',
  2082. )
  2083. [ info ] [ PARAM ] array (
  2084. 'mobile' => '13245678913',
  2085. 'username' => '13245678913',
  2086. 'password' => '123456',
  2087. 'pid' => '',
  2088. 'version' => 'web',
  2089. )
  2090. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2091. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001713s ]
  2092. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2093. [ info ] [ DB ] INIT mysql
  2094. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2095. [ info ] [ TOKEN ] INIT Mysql
  2096. [ info ] [ LOG ] INIT File
  2097. ---------------------------------------------------------------
  2098. [ 2025-05-27T15:41:38+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  2099. [运行时间:0.596117s] [吞吐率:1.68req/s] [内存消耗:5,455.03kb] [文件加载:142]
  2100. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000365s ]
  2101. [ info ] [ CACHE ] INIT File
  2102. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001089s ]
  2103. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2104. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000242s ]
  2105. [ info ] [ ROUTE ] array (
  2106. 'type' => 'module',
  2107. 'module' =>
  2108. array (
  2109. 0 => 'api',
  2110. 1 => 'user',
  2111. 2 => 'reg',
  2112. ),
  2113. )
  2114. [ info ] [ HEADER ] array (
  2115. 'priority' => 'u=1, i',
  2116. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2117. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2118. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2119. 'sec-fetch-dest' => 'empty',
  2120. 'sec-fetch-mode' => 'cors',
  2121. 'sec-fetch-site' => 'same-origin',
  2122. 'origin' => 'https://ts.shanghairongxuan.top',
  2123. 'accept' => '*/*',
  2124. 'sec-ch-ua-mobile' => '?1',
  2125. 'content-type' => 'application/x-www-form-urlencoded',
  2126. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2127. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2128. 'sec-ch-ua-platform' => '"Android"',
  2129. 'content-length' => '72',
  2130. 'host' => 'ts.shanghairongxuan.top',
  2131. )
  2132. [ info ] [ PARAM ] array (
  2133. 'mobile' => '13245678913',
  2134. 'username' => '13245678913',
  2135. 'password' => '123456',
  2136. 'pid' => '',
  2137. 'version' => 'web',
  2138. )
  2139. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2140. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001222s ]
  2141. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2142. [ info ] [ DB ] INIT mysql
  2143. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2144. [ info ] [ TOKEN ] INIT Mysql
  2145. [ info ] [ LOG ] INIT File
  2146. ---------------------------------------------------------------
  2147. [ 2025-05-27T15:42:45+08:00 ] 125.126.90.81 POST ts.shanghairongxuan.top/api/user/reg
  2148. [运行时间:0.695372s] [吞吐率:1.44req/s] [内存消耗:7,351.85kb] [文件加载:195]
  2149. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000185s ]
  2150. [ info ] [ CACHE ] INIT File
  2151. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001608s ]
  2152. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2153. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000334s ]
  2154. [ info ] [ ROUTE ] array (
  2155. 'type' => 'module',
  2156. 'module' =>
  2157. array (
  2158. 0 => 'api',
  2159. 1 => 'user',
  2160. 2 => 'reg',
  2161. ),
  2162. )
  2163. [ info ] [ HEADER ] array (
  2164. 'priority' => 'u=1, i',
  2165. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2166. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2167. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2168. 'sec-fetch-dest' => 'empty',
  2169. 'sec-fetch-mode' => 'cors',
  2170. 'sec-fetch-site' => 'same-origin',
  2171. 'origin' => 'https://ts.shanghairongxuan.top',
  2172. 'accept' => '*/*',
  2173. 'sec-ch-ua-mobile' => '?1',
  2174. 'content-type' => 'application/x-www-form-urlencoded',
  2175. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2176. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2177. 'sec-ch-ua-platform' => '"Android"',
  2178. 'content-length' => '72',
  2179. 'host' => 'ts.shanghairongxuan.top',
  2180. )
  2181. [ info ] [ PARAM ] array (
  2182. 'mobile' => '13245678913',
  2183. 'username' => '13245678913',
  2184. 'password' => '123456',
  2185. 'pid' => '',
  2186. 'version' => 'web',
  2187. )
  2188. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2189. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001791s ]
  2190. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2191. [ info ] [ DB ] INIT mysql
  2192. [ info ] [ RUN ] app\api\controller\User->reg[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2193. [ info ] [ TOKEN ] INIT Mysql
  2194. [ info ] [ LOG ] INIT File
  2195. ---------------------------------------------------------------
  2196. [ 2025-05-27T16:14:39+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/login?account=15356590576&password=qqqq7788&version=web
  2197. [运行时间:0.096192s] [吞吐率:10.40req/s] [内存消耗:4,052.97kb] [文件加载:86]
  2198. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000173s ]
  2199. [ info ] [ CACHE ] INIT File
  2200. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001264s ]
  2201. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2202. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000232s ]
  2203. [ info ] [ ROUTE ] array (
  2204. 'type' => 'module',
  2205. 'module' =>
  2206. array (
  2207. 0 => 'api',
  2208. 1 => 'user',
  2209. 2 => 'login',
  2210. ),
  2211. )
  2212. [ info ] [ HEADER ] array (
  2213. 'priority' => 'u=1, i',
  2214. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2215. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2216. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2217. 'sec-fetch-dest' => 'empty',
  2218. 'sec-fetch-mode' => 'cors',
  2219. 'sec-fetch-site' => 'same-origin',
  2220. 'accept' => '*/*',
  2221. 'sec-ch-ua-mobile' => '?1',
  2222. 'content-type' => 'application/x-www-form-urlencoded',
  2223. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2224. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2225. 'sec-ch-ua-platform' => '"Android"',
  2226. 'host' => 'ts.shanghairongxuan.top',
  2227. 'content-length' => '',
  2228. )
  2229. [ info ] [ PARAM ] array (
  2230. 'account' => '15356590576',
  2231. 'password' => 'qqqq7788',
  2232. 'version' => 'web',
  2233. )
  2234. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2235. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001427s ]
  2236. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2237. [ info ] [ DB ] INIT mysql
  2238. [ info ] [ RUN ] app\api\controller\User->login[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2239. [ info ] [ TOKEN ] INIT Mysql
  2240. [ info ] [ LOG ] INIT File
  2241. ---------------------------------------------------------------
  2242. [ 2025-05-27T16:14:40+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  2243. [运行时间:0.063060s] [吞吐率:15.86req/s] [内存消耗:4,049.23kb] [文件加载:83]
  2244. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000105s ]
  2245. [ info ] [ CACHE ] INIT File
  2246. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001352s ]
  2247. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2248. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000313s ]
  2249. [ info ] [ ROUTE ] array (
  2250. 'type' => 'module',
  2251. 'module' =>
  2252. array (
  2253. 0 => 'api',
  2254. 1 => 'video',
  2255. 2 => 'lists',
  2256. ),
  2257. )
  2258. [ info ] [ HEADER ] array (
  2259. 'priority' => 'u=1, i',
  2260. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2261. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2262. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2263. 'sec-fetch-dest' => 'empty',
  2264. 'sec-fetch-mode' => 'cors',
  2265. 'sec-fetch-site' => 'same-origin',
  2266. 'accept' => '*/*',
  2267. 'sec-ch-ua-mobile' => '?1',
  2268. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2269. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2270. 'sec-ch-ua-platform' => '"Android"',
  2271. 'host' => 'ts.shanghairongxuan.top',
  2272. 'content-length' => '',
  2273. 'content-type' => '',
  2274. )
  2275. [ info ] [ PARAM ] array (
  2276. 'limit' => '15',
  2277. 'ishot' => '2',
  2278. )
  2279. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2280. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001389s ]
  2281. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  2282. [ info ] [ DB ] INIT mysql
  2283. [ info ] [ LOG ] INIT File
  2284. ---------------------------------------------------------------
  2285. [ 2025-05-27T16:14:40+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  2286. [运行时间:0.070037s] [吞吐率:14.28req/s] [内存消耗:3,845.16kb] [文件加载:80]
  2287. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  2288. [ info ] [ CACHE ] INIT File
  2289. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003073s ]
  2290. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2291. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000259s ]
  2292. [ info ] [ ROUTE ] array (
  2293. 'type' => 'module',
  2294. 'module' =>
  2295. array (
  2296. 0 => 'api',
  2297. 1 => 'user',
  2298. 2 => 'index',
  2299. ),
  2300. )
  2301. [ info ] [ HEADER ] array (
  2302. 'priority' => 'u=1, i',
  2303. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2304. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2305. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2306. 'sec-fetch-dest' => 'empty',
  2307. 'sec-fetch-mode' => 'cors',
  2308. 'sec-fetch-site' => 'same-origin',
  2309. 'accept' => '*/*',
  2310. 'sec-ch-ua-mobile' => '?1',
  2311. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2312. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2313. 'sec-ch-ua-platform' => '"Android"',
  2314. 'host' => 'ts.shanghairongxuan.top',
  2315. 'content-length' => '',
  2316. 'content-type' => '',
  2317. )
  2318. [ info ] [ PARAM ] array (
  2319. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2320. 'uid' => '1552',
  2321. )
  2322. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2323. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001314s ]
  2324. [ info ] [ TOKEN ] INIT Mysql
  2325. [ info ] [ DB ] INIT mysql
  2326. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2327. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2328. [ info ] [ LOG ] INIT File
  2329. ---------------------------------------------------------------
  2330. [ 2025-05-27T16:14:42+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  2331. [运行时间:0.061741s] [吞吐率:16.20req/s] [内存消耗:3,845.16kb] [文件加载:80]
  2332. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000100s ]
  2333. [ info ] [ CACHE ] INIT File
  2334. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001379s ]
  2335. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2336. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000288s ]
  2337. [ info ] [ ROUTE ] array (
  2338. 'type' => 'module',
  2339. 'module' =>
  2340. array (
  2341. 0 => 'api',
  2342. 1 => 'user',
  2343. 2 => 'index',
  2344. ),
  2345. )
  2346. [ info ] [ HEADER ] array (
  2347. 'priority' => 'u=1, i',
  2348. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2349. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2350. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2351. 'sec-fetch-dest' => 'empty',
  2352. 'sec-fetch-mode' => 'cors',
  2353. 'sec-fetch-site' => 'same-origin',
  2354. 'accept' => '*/*',
  2355. 'sec-ch-ua-mobile' => '?1',
  2356. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2357. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2358. 'sec-ch-ua-platform' => '"Android"',
  2359. 'host' => 'ts.shanghairongxuan.top',
  2360. 'content-length' => '',
  2361. 'content-type' => '',
  2362. )
  2363. [ info ] [ PARAM ] array (
  2364. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2365. 'uid' => '1552',
  2366. )
  2367. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2368. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001312s ]
  2369. [ info ] [ TOKEN ] INIT Mysql
  2370. [ info ] [ DB ] INIT mysql
  2371. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2372. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2373. [ info ] [ LOG ] INIT File
  2374. ---------------------------------------------------------------
  2375. [ 2025-05-27T16:14:47+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/paywx/paywxh5?iswx=&token=662e8249-4367-48d0-8a14-fcc13cb87468&total=0.01&tdnum=901
  2376. [运行时间:0.074572s] [吞吐率:13.41req/s] [内存消耗:3,447.78kb] [文件加载:78]
  2377. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000099s ]
  2378. [ info ] [ CACHE ] INIT File
  2379. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001303s ]
  2380. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2381. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000285s ]
  2382. [ info ] [ ROUTE ] array (
  2383. 'type' => 'module',
  2384. 'module' =>
  2385. array (
  2386. 0 => 'api',
  2387. 1 => 'paywx',
  2388. 2 => 'paywxh5',
  2389. ),
  2390. )
  2391. [ info ] [ HEADER ] array (
  2392. 'priority' => 'u=1, i',
  2393. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2394. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2395. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2396. 'sec-fetch-dest' => 'empty',
  2397. 'sec-fetch-mode' => 'cors',
  2398. 'sec-fetch-site' => 'same-origin',
  2399. 'accept' => '*/*',
  2400. 'sec-ch-ua-mobile' => '?1',
  2401. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2402. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2403. 'sec-ch-ua-platform' => '"Android"',
  2404. 'host' => 'ts.shanghairongxuan.top',
  2405. 'content-length' => '',
  2406. 'content-type' => '',
  2407. )
  2408. [ info ] [ PARAM ] array (
  2409. 'iswx' => '',
  2410. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2411. 'total' => '0.01',
  2412. 'tdnum' => '901',
  2413. )
  2414. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2415. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001607s ]
  2416. [ info ] [ TOKEN ] INIT Mysql
  2417. [ info ] [ DB ] INIT mysql
  2418. [ info ] [ RUN ] app\api\controller\Paywx->paywxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Paywx.php ]
  2419. [ info ] [ LOG ] INIT File
  2420. ---------------------------------------------------------------
  2421. [ 2025-05-27T16:14:47+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//index/paydsf/wxh5?out_trade_no=2505270426908
  2422. [运行时间:0.389986s] [吞吐率:2.56req/s] [内存消耗:3,753.35kb] [文件加载:77]
  2423. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000255s ]
  2424. [ info ] [ CACHE ] INIT File
  2425. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001411s ]
  2426. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2427. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000223s ]
  2428. [ info ] [ ROUTE ] array (
  2429. 'type' => 'module',
  2430. 'module' =>
  2431. array (
  2432. 0 => 'index',
  2433. 1 => 'paydsf',
  2434. 2 => 'wxh5',
  2435. ),
  2436. )
  2437. [ info ] [ HEADER ] array (
  2438. 'priority' => 'u=0, i',
  2439. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2440. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2441. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2442. 'sec-fetch-dest' => 'document',
  2443. 'sec-fetch-user' => '?1',
  2444. 'sec-fetch-mode' => 'navigate',
  2445. 'sec-fetch-site' => 'same-origin',
  2446. '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',
  2447. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2448. 'upgrade-insecure-requests' => '1',
  2449. 'sec-ch-ua-platform' => '"Android"',
  2450. 'sec-ch-ua-mobile' => '?1',
  2451. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2452. 'host' => 'ts.shanghairongxuan.top',
  2453. 'content-length' => '',
  2454. 'content-type' => '',
  2455. )
  2456. [ info ] [ PARAM ] array (
  2457. 'out_trade_no' => '2505270426908',
  2458. )
  2459. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  2460. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001458s ]
  2461. [ info ] [ RUN ] app\index\controller\Paydsf->wxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Paydsf.php ]
  2462. [ info ] [ DB ] INIT mysql
  2463. [ info ] [ LOG ] INIT File
  2464. ---------------------------------------------------------------
  2465. [ 2025-05-27T16:15:10+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  2466. [运行时间:0.069385s] [吞吐率:14.41req/s] [内存消耗:3,845.16kb] [文件加载:80]
  2467. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000100s ]
  2468. [ info ] [ CACHE ] INIT File
  2469. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001215s ]
  2470. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2471. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000246s ]
  2472. [ info ] [ ROUTE ] array (
  2473. 'type' => 'module',
  2474. 'module' =>
  2475. array (
  2476. 0 => 'api',
  2477. 1 => 'user',
  2478. 2 => 'index',
  2479. ),
  2480. )
  2481. [ info ] [ HEADER ] array (
  2482. 'priority' => 'u=1, i',
  2483. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2484. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2485. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2486. 'sec-fetch-dest' => 'empty',
  2487. 'sec-fetch-mode' => 'cors',
  2488. 'sec-fetch-site' => 'same-origin',
  2489. 'accept' => '*/*',
  2490. 'sec-ch-ua-mobile' => '?1',
  2491. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2492. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2493. 'sec-ch-ua-platform' => '"Android"',
  2494. 'host' => 'ts.shanghairongxuan.top',
  2495. 'content-length' => '',
  2496. 'content-type' => '',
  2497. )
  2498. [ info ] [ PARAM ] array (
  2499. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2500. 'uid' => '1552',
  2501. )
  2502. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2503. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001546s ]
  2504. [ info ] [ TOKEN ] INIT Mysql
  2505. [ info ] [ DB ] INIT mysql
  2506. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2507. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2508. [ info ] [ LOG ] INIT File
  2509. ---------------------------------------------------------------
  2510. [ 2025-05-27T16:15:13+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/usermoneyinfo?limit=10&token=662e8249-4367-48d0-8a14-fcc13cb87468
  2511. [运行时间:0.059857s] [吞吐率:16.71req/s] [内存消耗:3,854.33kb] [文件加载:80]
  2512. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000106s ]
  2513. [ info ] [ CACHE ] INIT File
  2514. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001396s ]
  2515. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2516. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000297s ]
  2517. [ info ] [ ROUTE ] array (
  2518. 'type' => 'module',
  2519. 'module' =>
  2520. array (
  2521. 0 => 'api',
  2522. 1 => 'user',
  2523. 2 => 'usermoneyinfo',
  2524. ),
  2525. )
  2526. [ info ] [ HEADER ] array (
  2527. 'priority' => 'u=1, i',
  2528. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2529. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2530. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2531. 'sec-fetch-dest' => 'empty',
  2532. 'sec-fetch-mode' => 'cors',
  2533. 'sec-fetch-site' => 'same-origin',
  2534. 'accept' => '*/*',
  2535. 'sec-ch-ua-mobile' => '?1',
  2536. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2537. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2538. 'sec-ch-ua-platform' => '"Android"',
  2539. 'host' => 'ts.shanghairongxuan.top',
  2540. 'content-length' => '',
  2541. 'content-type' => '',
  2542. )
  2543. [ info ] [ PARAM ] array (
  2544. 'limit' => '10',
  2545. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2546. )
  2547. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2548. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001459s ]
  2549. [ info ] [ TOKEN ] INIT Mysql
  2550. [ info ] [ DB ] INIT mysql
  2551. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2552. [ info ] [ RUN ] app\api\controller\User->usermoneyinfo[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2553. [ info ] [ LOG ] INIT File
  2554. ---------------------------------------------------------------
  2555. [ 2025-05-27T16:15:18+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/usermoneyinfo?offset=10&_=1748333717335&limit=10&token=662e8249-4367-48d0-8a14-fcc13cb87468
  2556. [运行时间:0.075454s] [吞吐率:13.25req/s] [内存消耗:3,854.53kb] [文件加载:80]
  2557. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000133s ]
  2558. [ info ] [ CACHE ] INIT File
  2559. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001467s ]
  2560. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2561. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000240s ]
  2562. [ info ] [ ROUTE ] array (
  2563. 'type' => 'module',
  2564. 'module' =>
  2565. array (
  2566. 0 => 'api',
  2567. 1 => 'user',
  2568. 2 => 'usermoneyinfo',
  2569. ),
  2570. )
  2571. [ info ] [ HEADER ] array (
  2572. 'priority' => 'u=1, i',
  2573. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2574. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2575. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2576. 'sec-fetch-dest' => 'empty',
  2577. 'sec-fetch-mode' => 'cors',
  2578. 'sec-fetch-site' => 'same-origin',
  2579. 'accept' => '*/*',
  2580. 'sec-ch-ua-mobile' => '?1',
  2581. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2582. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2583. 'sec-ch-ua-platform' => '"Android"',
  2584. 'host' => 'ts.shanghairongxuan.top',
  2585. 'content-length' => '',
  2586. 'content-type' => '',
  2587. )
  2588. [ info ] [ PARAM ] array (
  2589. 'offset' => '10',
  2590. '_' => '1748333717335',
  2591. 'limit' => '10',
  2592. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2593. )
  2594. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2595. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001474s ]
  2596. [ info ] [ TOKEN ] INIT Mysql
  2597. [ info ] [ DB ] INIT mysql
  2598. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2599. [ info ] [ RUN ] app\api\controller\User->usermoneyinfo[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2600. [ info ] [ LOG ] INIT File
  2601. ---------------------------------------------------------------
  2602. [ 2025-05-27T16:15:22+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  2603. [运行时间:0.061630s] [吞吐率:16.23req/s] [内存消耗:3,845.16kb] [文件加载:80]
  2604. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2605. [ info ] [ CACHE ] INIT File
  2606. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001328s ]
  2607. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2608. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000217s ]
  2609. [ info ] [ ROUTE ] array (
  2610. 'type' => 'module',
  2611. 'module' =>
  2612. array (
  2613. 0 => 'api',
  2614. 1 => 'user',
  2615. 2 => 'index',
  2616. ),
  2617. )
  2618. [ info ] [ HEADER ] array (
  2619. 'priority' => 'u=1, i',
  2620. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2621. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2622. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2623. 'sec-fetch-dest' => 'empty',
  2624. 'sec-fetch-mode' => 'cors',
  2625. 'sec-fetch-site' => 'same-origin',
  2626. 'accept' => '*/*',
  2627. 'sec-ch-ua-mobile' => '?1',
  2628. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2629. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2630. 'sec-ch-ua-platform' => '"Android"',
  2631. 'host' => 'ts.shanghairongxuan.top',
  2632. 'content-length' => '',
  2633. 'content-type' => '',
  2634. )
  2635. [ info ] [ PARAM ] array (
  2636. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2637. 'uid' => '1552',
  2638. )
  2639. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2640. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001358s ]
  2641. [ info ] [ TOKEN ] INIT Mysql
  2642. [ info ] [ DB ] INIT mysql
  2643. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2644. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2645. [ info ] [ LOG ] INIT File
  2646. ---------------------------------------------------------------
  2647. [ 2025-05-27T16:19:14+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  2648. [运行时间:0.071807s] [吞吐率:13.93req/s] [内存消耗:3,845.16kb] [文件加载:80]
  2649. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000112s ]
  2650. [ info ] [ CACHE ] INIT File
  2651. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001400s ]
  2652. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2653. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000307s ]
  2654. [ info ] [ ROUTE ] array (
  2655. 'type' => 'module',
  2656. 'module' =>
  2657. array (
  2658. 0 => 'api',
  2659. 1 => 'user',
  2660. 2 => 'index',
  2661. ),
  2662. )
  2663. [ info ] [ HEADER ] array (
  2664. 'priority' => 'u=1, i',
  2665. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2666. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2667. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2668. 'sec-fetch-dest' => 'empty',
  2669. 'sec-fetch-mode' => 'cors',
  2670. 'sec-fetch-site' => 'same-origin',
  2671. 'accept' => '*/*',
  2672. 'sec-ch-ua-mobile' => '?1',
  2673. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2674. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2675. 'sec-ch-ua-platform' => '"Android"',
  2676. 'host' => 'ts.shanghairongxuan.top',
  2677. 'content-length' => '',
  2678. 'content-type' => '',
  2679. )
  2680. [ info ] [ PARAM ] array (
  2681. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2682. 'uid' => '1552',
  2683. )
  2684. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2685. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001416s ]
  2686. [ info ] [ TOKEN ] INIT Mysql
  2687. [ info ] [ DB ] INIT mysql
  2688. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2689. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2690. [ info ] [ LOG ] INIT File
  2691. ---------------------------------------------------------------
  2692. [ 2025-05-27T16:19:18+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/paywx/paywxh5?iswx=&token=662e8249-4367-48d0-8a14-fcc13cb87468&total=0.01&tdnum=901
  2693. [运行时间:0.071789s] [吞吐率:13.93req/s] [内存消耗:3,447.78kb] [文件加载:78]
  2694. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000125s ]
  2695. [ info ] [ CACHE ] INIT File
  2696. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001573s ]
  2697. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2698. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000229s ]
  2699. [ info ] [ ROUTE ] array (
  2700. 'type' => 'module',
  2701. 'module' =>
  2702. array (
  2703. 0 => 'api',
  2704. 1 => 'paywx',
  2705. 2 => 'paywxh5',
  2706. ),
  2707. )
  2708. [ info ] [ HEADER ] array (
  2709. 'priority' => 'u=1, i',
  2710. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2711. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2712. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2713. 'sec-fetch-dest' => 'empty',
  2714. 'sec-fetch-mode' => 'cors',
  2715. 'sec-fetch-site' => 'same-origin',
  2716. 'accept' => '*/*',
  2717. 'sec-ch-ua-mobile' => '?1',
  2718. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2719. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2720. 'sec-ch-ua-platform' => '"Android"',
  2721. 'host' => 'ts.shanghairongxuan.top',
  2722. 'content-length' => '',
  2723. 'content-type' => '',
  2724. )
  2725. [ info ] [ PARAM ] array (
  2726. 'iswx' => '',
  2727. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2728. 'total' => '0.01',
  2729. 'tdnum' => '901',
  2730. )
  2731. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2732. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001527s ]
  2733. [ info ] [ TOKEN ] INIT Mysql
  2734. [ info ] [ DB ] INIT mysql
  2735. [ info ] [ RUN ] app\api\controller\Paywx->paywxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Paywx.php ]
  2736. [ info ] [ LOG ] INIT File
  2737. ---------------------------------------------------------------
  2738. [ 2025-05-27T16:19:18+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//index/paydsf/wxh5?out_trade_no=2505270416021
  2739. [运行时间:0.361308s] [吞吐率:2.77req/s] [内存消耗:3,753.35kb] [文件加载:77]
  2740. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000135s ]
  2741. [ info ] [ CACHE ] INIT File
  2742. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001425s ]
  2743. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2744. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000242s ]
  2745. [ info ] [ ROUTE ] array (
  2746. 'type' => 'module',
  2747. 'module' =>
  2748. array (
  2749. 0 => 'index',
  2750. 1 => 'paydsf',
  2751. 2 => 'wxh5',
  2752. ),
  2753. )
  2754. [ info ] [ HEADER ] array (
  2755. 'priority' => 'u=0, i',
  2756. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2757. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2758. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2759. 'sec-fetch-dest' => 'document',
  2760. 'sec-fetch-user' => '?1',
  2761. 'sec-fetch-mode' => 'navigate',
  2762. 'sec-fetch-site' => 'same-origin',
  2763. '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',
  2764. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2765. 'upgrade-insecure-requests' => '1',
  2766. 'sec-ch-ua-platform' => '"Android"',
  2767. 'sec-ch-ua-mobile' => '?1',
  2768. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2769. 'host' => 'ts.shanghairongxuan.top',
  2770. 'content-length' => '',
  2771. 'content-type' => '',
  2772. )
  2773. [ info ] [ PARAM ] array (
  2774. 'out_trade_no' => '2505270416021',
  2775. )
  2776. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  2777. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001483s ]
  2778. [ info ] [ RUN ] app\index\controller\Paydsf->wxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Paydsf.php ]
  2779. [ info ] [ DB ] INIT mysql
  2780. [ info ] [ LOG ] INIT File
  2781. ---------------------------------------------------------------
  2782. [ 2025-05-27T16:19:23+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  2783. [运行时间:0.056637s] [吞吐率:17.66req/s] [内存消耗:3,845.16kb] [文件加载:80]
  2784. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000100s ]
  2785. [ info ] [ CACHE ] INIT File
  2786. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001393s ]
  2787. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2788. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000263s ]
  2789. [ info ] [ ROUTE ] array (
  2790. 'type' => 'module',
  2791. 'module' =>
  2792. array (
  2793. 0 => 'api',
  2794. 1 => 'user',
  2795. 2 => 'index',
  2796. ),
  2797. )
  2798. [ info ] [ HEADER ] array (
  2799. 'priority' => 'u=1, i',
  2800. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2801. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2802. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2803. 'sec-fetch-dest' => 'empty',
  2804. 'sec-fetch-mode' => 'cors',
  2805. 'sec-fetch-site' => 'same-origin',
  2806. 'accept' => '*/*',
  2807. 'sec-ch-ua-mobile' => '?1',
  2808. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2809. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2810. 'sec-ch-ua-platform' => '"Android"',
  2811. 'host' => 'ts.shanghairongxuan.top',
  2812. 'content-length' => '',
  2813. 'content-type' => '',
  2814. )
  2815. [ info ] [ PARAM ] array (
  2816. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2817. 'uid' => '1552',
  2818. )
  2819. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2820. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001232s ]
  2821. [ info ] [ TOKEN ] INIT Mysql
  2822. [ info ] [ DB ] INIT mysql
  2823. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2824. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2825. [ info ] [ LOG ] INIT File
  2826. ---------------------------------------------------------------
  2827. [ 2025-05-27T16:19:25+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/paywx/paywxh5?iswx=&token=662e8249-4367-48d0-8a14-fcc13cb87468&total=0.01&tdnum=901
  2828. [运行时间:0.061811s] [吞吐率:16.18req/s] [内存消耗:3,447.78kb] [文件加载:78]
  2829. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000108s ]
  2830. [ info ] [ CACHE ] INIT File
  2831. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001448s ]
  2832. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2833. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000299s ]
  2834. [ info ] [ ROUTE ] array (
  2835. 'type' => 'module',
  2836. 'module' =>
  2837. array (
  2838. 0 => 'api',
  2839. 1 => 'paywx',
  2840. 2 => 'paywxh5',
  2841. ),
  2842. )
  2843. [ info ] [ HEADER ] array (
  2844. 'priority' => 'u=1, i',
  2845. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2846. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2847. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2848. 'sec-fetch-dest' => 'empty',
  2849. 'sec-fetch-mode' => 'cors',
  2850. 'sec-fetch-site' => 'same-origin',
  2851. 'accept' => '*/*',
  2852. 'sec-ch-ua-mobile' => '?1',
  2853. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2854. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2855. 'sec-ch-ua-platform' => '"Android"',
  2856. 'host' => 'ts.shanghairongxuan.top',
  2857. 'content-length' => '',
  2858. 'content-type' => '',
  2859. )
  2860. [ info ] [ PARAM ] array (
  2861. 'iswx' => '',
  2862. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2863. 'total' => '0.01',
  2864. 'tdnum' => '901',
  2865. )
  2866. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2867. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001254s ]
  2868. [ info ] [ TOKEN ] INIT Mysql
  2869. [ info ] [ DB ] INIT mysql
  2870. [ info ] [ RUN ] app\api\controller\Paywx->paywxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Paywx.php ]
  2871. [ info ] [ LOG ] INIT File
  2872. ---------------------------------------------------------------
  2873. [ 2025-05-27T16:19:25+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//index/paydsf/wxh5?out_trade_no=2505270451629
  2874. [运行时间:0.372569s] [吞吐率:2.68req/s] [内存消耗:3,753.35kb] [文件加载:77]
  2875. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000106s ]
  2876. [ info ] [ CACHE ] INIT File
  2877. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001645s ]
  2878. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2879. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000326s ]
  2880. [ info ] [ ROUTE ] array (
  2881. 'type' => 'module',
  2882. 'module' =>
  2883. array (
  2884. 0 => 'index',
  2885. 1 => 'paydsf',
  2886. 2 => 'wxh5',
  2887. ),
  2888. )
  2889. [ info ] [ HEADER ] array (
  2890. 'priority' => 'u=0, i',
  2891. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2892. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2893. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2894. 'sec-fetch-dest' => 'document',
  2895. 'sec-fetch-user' => '?1',
  2896. 'sec-fetch-mode' => 'navigate',
  2897. 'sec-fetch-site' => 'same-origin',
  2898. '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',
  2899. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2900. 'upgrade-insecure-requests' => '1',
  2901. 'sec-ch-ua-platform' => '"Android"',
  2902. 'sec-ch-ua-mobile' => '?1',
  2903. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2904. 'host' => 'ts.shanghairongxuan.top',
  2905. 'content-length' => '',
  2906. 'content-type' => '',
  2907. )
  2908. [ info ] [ PARAM ] array (
  2909. 'out_trade_no' => '2505270451629',
  2910. )
  2911. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  2912. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001960s ]
  2913. [ info ] [ RUN ] app\index\controller\Paydsf->wxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Paydsf.php ]
  2914. [ info ] [ DB ] INIT mysql
  2915. [ info ] [ LOG ] INIT File
  2916. ---------------------------------------------------------------
  2917. [ 2025-05-27T16:22:44+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  2918. [运行时间:0.074054s] [吞吐率:13.50req/s] [内存消耗:3,845.16kb] [文件加载:80]
  2919. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000082s ]
  2920. [ info ] [ CACHE ] INIT File
  2921. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001808s ]
  2922. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2923. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000394s ]
  2924. [ info ] [ ROUTE ] array (
  2925. 'type' => 'module',
  2926. 'module' =>
  2927. array (
  2928. 0 => 'api',
  2929. 1 => 'user',
  2930. 2 => 'index',
  2931. ),
  2932. )
  2933. [ info ] [ HEADER ] array (
  2934. 'priority' => 'u=1, i',
  2935. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2936. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2937. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2938. 'sec-fetch-dest' => 'empty',
  2939. 'sec-fetch-mode' => 'cors',
  2940. 'sec-fetch-site' => 'same-origin',
  2941. 'accept' => '*/*',
  2942. 'sec-ch-ua-mobile' => '?1',
  2943. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2944. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2945. 'sec-ch-ua-platform' => '"Android"',
  2946. 'host' => 'ts.shanghairongxuan.top',
  2947. 'content-length' => '',
  2948. 'content-type' => '',
  2949. )
  2950. [ info ] [ PARAM ] array (
  2951. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2952. 'uid' => '1552',
  2953. )
  2954. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  2955. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002188s ]
  2956. [ info ] [ TOKEN ] INIT Mysql
  2957. [ info ] [ DB ] INIT mysql
  2958. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  2959. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  2960. [ info ] [ LOG ] INIT File
  2961. ---------------------------------------------------------------
  2962. [ 2025-05-27T16:22:46+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/usermoneyinfo?limit=10&token=662e8249-4367-48d0-8a14-fcc13cb87468
  2963. [运行时间:0.055573s] [吞吐率:17.99req/s] [内存消耗:3,854.33kb] [文件加载:80]
  2964. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  2965. [ info ] [ CACHE ] INIT File
  2966. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001419s ]
  2967. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  2968. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000289s ]
  2969. [ info ] [ ROUTE ] array (
  2970. 'type' => 'module',
  2971. 'module' =>
  2972. array (
  2973. 0 => 'api',
  2974. 1 => 'user',
  2975. 2 => 'usermoneyinfo',
  2976. ),
  2977. )
  2978. [ info ] [ HEADER ] array (
  2979. 'priority' => 'u=1, i',
  2980. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  2981. 'accept-encoding' => 'gzip, deflate, br, zstd',
  2982. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  2983. 'sec-fetch-dest' => 'empty',
  2984. 'sec-fetch-mode' => 'cors',
  2985. 'sec-fetch-site' => 'same-origin',
  2986. 'accept' => '*/*',
  2987. 'sec-ch-ua-mobile' => '?1',
  2988. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  2989. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  2990. 'sec-ch-ua-platform' => '"Android"',
  2991. 'host' => 'ts.shanghairongxuan.top',
  2992. 'content-length' => '',
  2993. 'content-type' => '',
  2994. )
  2995. [ info ] [ PARAM ] array (
  2996. 'limit' => '10',
  2997. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  2998. )
  2999. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3000. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001681s ]
  3001. [ info ] [ TOKEN ] INIT Mysql
  3002. [ info ] [ DB ] INIT mysql
  3003. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3004. [ info ] [ RUN ] app\api\controller\User->usermoneyinfo[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3005. [ info ] [ LOG ] INIT File
  3006. ---------------------------------------------------------------
  3007. [ 2025-05-27T16:22:48+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3008. [运行时间:0.066715s] [吞吐率:14.99req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3009. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000033s ]
  3010. [ info ] [ CACHE ] INIT File
  3011. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001360s ]
  3012. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3013. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000219s ]
  3014. [ info ] [ ROUTE ] array (
  3015. 'type' => 'module',
  3016. 'module' =>
  3017. array (
  3018. 0 => 'api',
  3019. 1 => 'user',
  3020. 2 => 'index',
  3021. ),
  3022. )
  3023. [ info ] [ HEADER ] array (
  3024. 'priority' => 'u=1, i',
  3025. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3026. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3027. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3028. 'sec-fetch-dest' => 'empty',
  3029. 'sec-fetch-mode' => 'cors',
  3030. 'sec-fetch-site' => 'same-origin',
  3031. 'accept' => '*/*',
  3032. 'sec-ch-ua-mobile' => '?1',
  3033. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3034. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3035. 'sec-ch-ua-platform' => '"Android"',
  3036. 'host' => 'ts.shanghairongxuan.top',
  3037. 'content-length' => '',
  3038. 'content-type' => '',
  3039. )
  3040. [ info ] [ PARAM ] array (
  3041. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3042. 'uid' => '1552',
  3043. )
  3044. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3045. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001345s ]
  3046. [ info ] [ TOKEN ] INIT Mysql
  3047. [ info ] [ DB ] INIT mysql
  3048. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3049. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3050. [ info ] [ LOG ] INIT File
  3051. ---------------------------------------------------------------
  3052. [ 2025-05-27T16:23:04+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/paywx/paywxh5?iswx=&token=662e8249-4367-48d0-8a14-fcc13cb87468&total=30&tdnum=901
  3053. [运行时间:0.078516s] [吞吐率:12.74req/s] [内存消耗:3,447.50kb] [文件加载:78]
  3054. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000027s ]
  3055. [ info ] [ CACHE ] INIT File
  3056. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001296s ]
  3057. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3058. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000282s ]
  3059. [ info ] [ ROUTE ] array (
  3060. 'type' => 'module',
  3061. 'module' =>
  3062. array (
  3063. 0 => 'api',
  3064. 1 => 'paywx',
  3065. 2 => 'paywxh5',
  3066. ),
  3067. )
  3068. [ info ] [ HEADER ] array (
  3069. 'priority' => 'u=1, i',
  3070. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3071. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3072. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3073. 'sec-fetch-dest' => 'empty',
  3074. 'sec-fetch-mode' => 'cors',
  3075. 'sec-fetch-site' => 'same-origin',
  3076. 'accept' => '*/*',
  3077. 'sec-ch-ua-mobile' => '?1',
  3078. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3079. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3080. 'sec-ch-ua-platform' => '"Android"',
  3081. 'host' => 'ts.shanghairongxuan.top',
  3082. 'content-length' => '',
  3083. 'content-type' => '',
  3084. )
  3085. [ info ] [ PARAM ] array (
  3086. 'iswx' => '',
  3087. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3088. 'total' => '30',
  3089. 'tdnum' => '901',
  3090. )
  3091. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3092. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001370s ]
  3093. [ info ] [ TOKEN ] INIT Mysql
  3094. [ info ] [ DB ] INIT mysql
  3095. [ info ] [ RUN ] app\api\controller\Paywx->paywxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Paywx.php ]
  3096. [ info ] [ LOG ] INIT File
  3097. ---------------------------------------------------------------
  3098. [ 2025-05-27T16:23:04+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//index/paydsf/wxh5?out_trade_no=2505270462057
  3099. [运行时间:0.381539s] [吞吐率:2.62req/s] [内存消耗:3,753.35kb] [文件加载:77]
  3100. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  3101. [ info ] [ CACHE ] INIT File
  3102. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001358s ]
  3103. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3104. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000274s ]
  3105. [ info ] [ ROUTE ] array (
  3106. 'type' => 'module',
  3107. 'module' =>
  3108. array (
  3109. 0 => 'index',
  3110. 1 => 'paydsf',
  3111. 2 => 'wxh5',
  3112. ),
  3113. )
  3114. [ info ] [ HEADER ] array (
  3115. 'priority' => 'u=0, i',
  3116. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3117. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3118. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3119. 'sec-fetch-dest' => 'document',
  3120. 'sec-fetch-user' => '?1',
  3121. 'sec-fetch-mode' => 'navigate',
  3122. 'sec-fetch-site' => 'same-origin',
  3123. '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',
  3124. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3125. 'upgrade-insecure-requests' => '1',
  3126. 'sec-ch-ua-platform' => '"Android"',
  3127. 'sec-ch-ua-mobile' => '?1',
  3128. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3129. 'host' => 'ts.shanghairongxuan.top',
  3130. 'content-length' => '',
  3131. 'content-type' => '',
  3132. )
  3133. [ info ] [ PARAM ] array (
  3134. 'out_trade_no' => '2505270462057',
  3135. )
  3136. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  3137. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001558s ]
  3138. [ info ] [ RUN ] app\index\controller\Paydsf->wxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Paydsf.php ]
  3139. [ info ] [ DB ] INIT mysql
  3140. [ info ] [ LOG ] INIT File
  3141. ---------------------------------------------------------------
  3142. [ 2025-05-27T16:23:06+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3143. [运行时间:0.056008s] [吞吐率:17.85req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3144. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  3145. [ info ] [ CACHE ] INIT File
  3146. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001454s ]
  3147. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3148. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000300s ]
  3149. [ info ] [ ROUTE ] array (
  3150. 'type' => 'module',
  3151. 'module' =>
  3152. array (
  3153. 0 => 'api',
  3154. 1 => 'user',
  3155. 2 => 'index',
  3156. ),
  3157. )
  3158. [ info ] [ HEADER ] array (
  3159. 'priority' => 'u=1, i',
  3160. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3161. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3162. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3163. 'sec-fetch-dest' => 'empty',
  3164. 'sec-fetch-mode' => 'cors',
  3165. 'sec-fetch-site' => 'same-origin',
  3166. 'accept' => '*/*',
  3167. 'sec-ch-ua-mobile' => '?1',
  3168. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3169. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3170. 'sec-ch-ua-platform' => '"Android"',
  3171. 'host' => 'ts.shanghairongxuan.top',
  3172. 'content-length' => '',
  3173. 'content-type' => '',
  3174. )
  3175. [ info ] [ PARAM ] array (
  3176. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3177. 'uid' => '1552',
  3178. )
  3179. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3180. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001582s ]
  3181. [ info ] [ TOKEN ] INIT Mysql
  3182. [ info ] [ DB ] INIT mysql
  3183. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3184. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3185. [ info ] [ LOG ] INIT File
  3186. ---------------------------------------------------------------
  3187. [ 2025-05-27T16:23:10+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3188. [运行时间:0.050955s] [吞吐率:19.63req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3189. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  3190. [ info ] [ CACHE ] INIT File
  3191. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001007s ]
  3192. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3193. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000210s ]
  3194. [ info ] [ ROUTE ] array (
  3195. 'type' => 'module',
  3196. 'module' =>
  3197. array (
  3198. 0 => 'api',
  3199. 1 => 'user',
  3200. 2 => 'index',
  3201. ),
  3202. )
  3203. [ info ] [ HEADER ] array (
  3204. 'priority' => 'u=1, i',
  3205. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3206. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3207. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3208. 'sec-fetch-dest' => 'empty',
  3209. 'sec-fetch-mode' => 'cors',
  3210. 'sec-fetch-site' => 'same-origin',
  3211. 'accept' => '*/*',
  3212. 'sec-ch-ua-mobile' => '?1',
  3213. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3214. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3215. 'sec-ch-ua-platform' => '"Android"',
  3216. 'host' => 'ts.shanghairongxuan.top',
  3217. 'content-length' => '',
  3218. 'content-type' => '',
  3219. )
  3220. [ info ] [ PARAM ] array (
  3221. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3222. 'uid' => '1552',
  3223. )
  3224. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3225. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001245s ]
  3226. [ info ] [ TOKEN ] INIT Mysql
  3227. [ info ] [ DB ] INIT mysql
  3228. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3229. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3230. [ info ] [ LOG ] INIT File
  3231. ---------------------------------------------------------------
  3232. [ 2025-05-27T16:23:18+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3233. [运行时间:0.054499s] [吞吐率:18.35req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3234. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  3235. [ info ] [ CACHE ] INIT File
  3236. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001419s ]
  3237. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3238. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000315s ]
  3239. [ info ] [ ROUTE ] array (
  3240. 'type' => 'module',
  3241. 'module' =>
  3242. array (
  3243. 0 => 'api',
  3244. 1 => 'user',
  3245. 2 => 'index',
  3246. ),
  3247. )
  3248. [ info ] [ HEADER ] array (
  3249. 'priority' => 'u=1, i',
  3250. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3251. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3252. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3253. 'sec-fetch-dest' => 'empty',
  3254. 'sec-fetch-mode' => 'cors',
  3255. 'sec-fetch-site' => 'same-origin',
  3256. 'accept' => '*/*',
  3257. 'sec-ch-ua-mobile' => '?1',
  3258. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3259. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3260. 'sec-ch-ua-platform' => '"Android"',
  3261. 'host' => 'ts.shanghairongxuan.top',
  3262. 'content-length' => '',
  3263. 'content-type' => '',
  3264. )
  3265. [ info ] [ PARAM ] array (
  3266. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3267. 'uid' => '1552',
  3268. )
  3269. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3270. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001445s ]
  3271. [ info ] [ TOKEN ] INIT Mysql
  3272. [ info ] [ DB ] INIT mysql
  3273. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3274. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3275. [ info ] [ LOG ] INIT File
  3276. ---------------------------------------------------------------
  3277. [ 2025-05-27T16:23:20+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3278. [运行时间:0.055023s] [吞吐率:18.17req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3279. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  3280. [ info ] [ CACHE ] INIT File
  3281. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001523s ]
  3282. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3283. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000430s ]
  3284. [ info ] [ ROUTE ] array (
  3285. 'type' => 'module',
  3286. 'module' =>
  3287. array (
  3288. 0 => 'api',
  3289. 1 => 'user',
  3290. 2 => 'index',
  3291. ),
  3292. )
  3293. [ info ] [ HEADER ] array (
  3294. 'priority' => 'u=1, i',
  3295. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3296. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3297. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3298. 'sec-fetch-dest' => 'empty',
  3299. 'sec-fetch-mode' => 'cors',
  3300. 'sec-fetch-site' => 'same-origin',
  3301. 'accept' => '*/*',
  3302. 'sec-ch-ua-mobile' => '?1',
  3303. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3304. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3305. 'sec-ch-ua-platform' => '"Android"',
  3306. 'host' => 'ts.shanghairongxuan.top',
  3307. 'content-length' => '',
  3308. 'content-type' => '',
  3309. )
  3310. [ info ] [ PARAM ] array (
  3311. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3312. 'uid' => '1552',
  3313. )
  3314. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3315. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001435s ]
  3316. [ info ] [ TOKEN ] INIT Mysql
  3317. [ info ] [ DB ] INIT mysql
  3318. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3319. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3320. [ info ] [ LOG ] INIT File
  3321. ---------------------------------------------------------------
  3322. [ 2025-05-27T16:23:20+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  3323. [运行时间:0.100219s] [吞吐率:9.98req/s] [内存消耗:4,049.23kb] [文件加载:83]
  3324. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  3325. [ info ] [ CACHE ] INIT File
  3326. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003156s ]
  3327. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3328. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000458s ]
  3329. [ info ] [ ROUTE ] array (
  3330. 'type' => 'module',
  3331. 'module' =>
  3332. array (
  3333. 0 => 'api',
  3334. 1 => 'video',
  3335. 2 => 'lists',
  3336. ),
  3337. )
  3338. [ info ] [ HEADER ] array (
  3339. 'priority' => 'u=1, i',
  3340. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3341. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3342. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3343. 'sec-fetch-dest' => 'empty',
  3344. 'sec-fetch-mode' => 'cors',
  3345. 'sec-fetch-site' => 'same-origin',
  3346. 'accept' => '*/*',
  3347. 'sec-ch-ua-mobile' => '?1',
  3348. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3349. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3350. 'sec-ch-ua-platform' => '"Android"',
  3351. 'host' => 'ts.shanghairongxuan.top',
  3352. 'content-length' => '',
  3353. 'content-type' => '',
  3354. )
  3355. [ info ] [ PARAM ] array (
  3356. 'limit' => '15',
  3357. 'ishot' => '2',
  3358. )
  3359. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3360. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002463s ]
  3361. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  3362. [ info ] [ DB ] INIT mysql
  3363. [ info ] [ LOG ] INIT File
  3364. ---------------------------------------------------------------
  3365. [ 2025-05-27T16:23:21+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/zuiju?uid=1552
  3366. [运行时间:0.078882s] [吞吐率:12.68req/s] [内存消耗:3,949.16kb] [文件加载:78]
  3367. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
  3368. [ info ] [ CACHE ] INIT File
  3369. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001430s ]
  3370. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3371. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000284s ]
  3372. [ info ] [ ROUTE ] array (
  3373. 'type' => 'module',
  3374. 'module' =>
  3375. array (
  3376. 0 => 'api',
  3377. 1 => 'video',
  3378. 2 => 'zuiju',
  3379. ),
  3380. )
  3381. [ info ] [ HEADER ] array (
  3382. 'priority' => 'u=1, i',
  3383. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3384. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3385. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3386. 'sec-fetch-dest' => 'empty',
  3387. 'sec-fetch-mode' => 'cors',
  3388. 'sec-fetch-site' => 'same-origin',
  3389. 'accept' => '*/*',
  3390. 'sec-ch-ua-mobile' => '?1',
  3391. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3392. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3393. 'sec-ch-ua-platform' => '"Android"',
  3394. 'host' => 'ts.shanghairongxuan.top',
  3395. 'content-length' => '',
  3396. 'content-type' => '',
  3397. )
  3398. [ info ] [ PARAM ] array (
  3399. 'uid' => '1552',
  3400. )
  3401. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3402. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001884s ]
  3403. [ info ] [ RUN ] app\api\controller\Video->zuiju[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  3404. [ info ] [ DB ] INIT mysql
  3405. [ info ] [ LOG ] INIT File
  3406. ---------------------------------------------------------------
  3407. [ 2025-05-27T16:23:23+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/indexdata
  3408. [运行时间:0.103645s] [吞吐率:9.65req/s] [内存消耗:4,072.51kb] [文件加载:83]
  3409. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000036s ]
  3410. [ info ] [ CACHE ] INIT File
  3411. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001207s ]
  3412. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3413. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000233s ]
  3414. [ info ] [ ROUTE ] array (
  3415. 'type' => 'module',
  3416. 'module' =>
  3417. array (
  3418. 0 => 'api',
  3419. 1 => 'video',
  3420. 2 => 'indexdata',
  3421. ),
  3422. )
  3423. [ info ] [ HEADER ] array (
  3424. 'priority' => 'u=1, i',
  3425. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3426. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3427. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3428. 'sec-fetch-dest' => 'empty',
  3429. 'sec-fetch-mode' => 'cors',
  3430. 'sec-fetch-site' => 'same-origin',
  3431. 'accept' => '*/*',
  3432. 'sec-ch-ua-mobile' => '?1',
  3433. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3434. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3435. 'sec-ch-ua-platform' => '"Android"',
  3436. 'host' => 'ts.shanghairongxuan.top',
  3437. 'content-length' => '',
  3438. 'content-type' => '',
  3439. )
  3440. [ info ] [ PARAM ] array (
  3441. )
  3442. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3443. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001454s ]
  3444. [ info ] [ RUN ] app\api\controller\Video->indexdata[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  3445. [ info ] [ DB ] INIT mysql
  3446. [ info ] [ LOG ] INIT File
  3447. ---------------------------------------------------------------
  3448. [ 2025-05-27T16:23:23+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/videoRecommend?page=1&uid=1552
  3449. [运行时间:0.103719s] [吞吐率:9.64req/s] [内存消耗:3,642.61kb] [文件加载:75]
  3450. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000026s ]
  3451. [ info ] [ CACHE ] INIT File
  3452. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001453s ]
  3453. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3454. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000285s ]
  3455. [ info ] [ ROUTE ] array (
  3456. 'type' => 'module',
  3457. 'module' =>
  3458. array (
  3459. 0 => 'api',
  3460. 1 => 'video',
  3461. 2 => 'videoRecommend',
  3462. ),
  3463. )
  3464. [ info ] [ HEADER ] array (
  3465. 'priority' => 'u=1, i',
  3466. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3467. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3468. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3469. 'sec-fetch-dest' => 'empty',
  3470. 'sec-fetch-mode' => 'cors',
  3471. 'sec-fetch-site' => 'same-origin',
  3472. 'accept' => '*/*',
  3473. 'sec-ch-ua-mobile' => '?1',
  3474. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3475. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3476. 'sec-ch-ua-platform' => '"Android"',
  3477. 'host' => 'ts.shanghairongxuan.top',
  3478. 'content-length' => '',
  3479. 'content-type' => '',
  3480. )
  3481. [ info ] [ PARAM ] array (
  3482. 'page' => '1',
  3483. 'uid' => '1552',
  3484. )
  3485. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3486. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001561s ]
  3487. [ info ] [ RUN ] app\api\controller\Video->videoRecommend[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  3488. [ info ] [ DB ] INIT mysql
  3489. [ info ] [ LOG ] INIT File
  3490. ---------------------------------------------------------------
  3491. [ 2025-05-27T16:23:24+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/indexdata
  3492. [运行时间:0.090805s] [吞吐率:11.01req/s] [内存消耗:4,072.51kb] [文件加载:83]
  3493. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
  3494. [ info ] [ CACHE ] INIT File
  3495. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001597s ]
  3496. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3497. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000373s ]
  3498. [ info ] [ ROUTE ] array (
  3499. 'type' => 'module',
  3500. 'module' =>
  3501. array (
  3502. 0 => 'api',
  3503. 1 => 'video',
  3504. 2 => 'indexdata',
  3505. ),
  3506. )
  3507. [ info ] [ HEADER ] array (
  3508. 'priority' => 'u=1, i',
  3509. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3510. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3511. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3512. 'sec-fetch-dest' => 'empty',
  3513. 'sec-fetch-mode' => 'cors',
  3514. 'sec-fetch-site' => 'same-origin',
  3515. 'accept' => '*/*',
  3516. 'sec-ch-ua-mobile' => '?1',
  3517. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3518. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3519. 'sec-ch-ua-platform' => '"Android"',
  3520. 'host' => 'ts.shanghairongxuan.top',
  3521. 'content-length' => '',
  3522. 'content-type' => '',
  3523. )
  3524. [ info ] [ PARAM ] array (
  3525. )
  3526. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3527. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002262s ]
  3528. [ info ] [ RUN ] app\api\controller\Video->indexdata[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  3529. [ info ] [ DB ] INIT mysql
  3530. [ info ] [ LOG ] INIT File
  3531. ---------------------------------------------------------------
  3532. [ 2025-05-27T16:24:17+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3533. [运行时间:0.067550s] [吞吐率:14.80req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3534. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000030s ]
  3535. [ info ] [ CACHE ] INIT File
  3536. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001119s ]
  3537. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3538. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000237s ]
  3539. [ info ] [ ROUTE ] array (
  3540. 'type' => 'module',
  3541. 'module' =>
  3542. array (
  3543. 0 => 'api',
  3544. 1 => 'user',
  3545. 2 => 'index',
  3546. ),
  3547. )
  3548. [ info ] [ HEADER ] array (
  3549. 'priority' => 'u=1, i',
  3550. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3551. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3552. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3553. 'sec-fetch-dest' => 'empty',
  3554. 'sec-fetch-mode' => 'cors',
  3555. 'sec-fetch-site' => 'same-origin',
  3556. 'accept' => '*/*',
  3557. 'sec-ch-ua-mobile' => '?1',
  3558. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3559. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3560. 'sec-ch-ua-platform' => '"Android"',
  3561. 'host' => 'ts.shanghairongxuan.top',
  3562. 'content-length' => '',
  3563. 'content-type' => '',
  3564. )
  3565. [ info ] [ PARAM ] array (
  3566. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3567. 'uid' => '1552',
  3568. )
  3569. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3570. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001569s ]
  3571. [ info ] [ TOKEN ] INIT Mysql
  3572. [ info ] [ DB ] INIT mysql
  3573. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3574. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3575. [ info ] [ LOG ] INIT File
  3576. ---------------------------------------------------------------
  3577. [ 2025-05-27T16:24:17+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/video/lists?limit=15&ishot=2
  3578. [运行时间:0.081708s] [吞吐率:12.24req/s] [内存消耗:4,049.23kb] [文件加载:83]
  3579. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  3580. [ info ] [ CACHE ] INIT File
  3581. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002515s ]
  3582. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3583. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000438s ]
  3584. [ info ] [ ROUTE ] array (
  3585. 'type' => 'module',
  3586. 'module' =>
  3587. array (
  3588. 0 => 'api',
  3589. 1 => 'video',
  3590. 2 => 'lists',
  3591. ),
  3592. )
  3593. [ info ] [ HEADER ] array (
  3594. 'priority' => 'u=1, i',
  3595. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3596. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3597. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3598. 'sec-fetch-dest' => 'empty',
  3599. 'sec-fetch-mode' => 'cors',
  3600. 'sec-fetch-site' => 'same-origin',
  3601. 'accept' => '*/*',
  3602. 'sec-ch-ua-mobile' => '?1',
  3603. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3604. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3605. 'sec-ch-ua-platform' => '"Android"',
  3606. 'host' => 'ts.shanghairongxuan.top',
  3607. 'content-length' => '',
  3608. 'content-type' => '',
  3609. )
  3610. [ info ] [ PARAM ] array (
  3611. 'limit' => '15',
  3612. 'ishot' => '2',
  3613. )
  3614. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3615. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002016s ]
  3616. [ info ] [ RUN ] app\api\controller\Video->lists[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Video.php ]
  3617. [ info ] [ DB ] INIT mysql
  3618. [ info ] [ LOG ] INIT File
  3619. ---------------------------------------------------------------
  3620. [ 2025-05-27T16:24:19+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3621. [运行时间:0.062619s] [吞吐率:15.97req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3622. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000037s ]
  3623. [ info ] [ CACHE ] INIT File
  3624. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001166s ]
  3625. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3626. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000227s ]
  3627. [ info ] [ ROUTE ] array (
  3628. 'type' => 'module',
  3629. 'module' =>
  3630. array (
  3631. 0 => 'api',
  3632. 1 => 'user',
  3633. 2 => 'index',
  3634. ),
  3635. )
  3636. [ info ] [ HEADER ] array (
  3637. 'priority' => 'u=1, i',
  3638. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3639. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3640. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3641. 'sec-fetch-dest' => 'empty',
  3642. 'sec-fetch-mode' => 'cors',
  3643. 'sec-fetch-site' => 'same-origin',
  3644. 'accept' => '*/*',
  3645. 'sec-ch-ua-mobile' => '?1',
  3646. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3647. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3648. 'sec-ch-ua-platform' => '"Android"',
  3649. 'host' => 'ts.shanghairongxuan.top',
  3650. 'content-length' => '',
  3651. 'content-type' => '',
  3652. )
  3653. [ info ] [ PARAM ] array (
  3654. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3655. 'uid' => '1552',
  3656. )
  3657. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3658. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001232s ]
  3659. [ info ] [ TOKEN ] INIT Mysql
  3660. [ info ] [ DB ] INIT mysql
  3661. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3662. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3663. [ info ] [ LOG ] INIT File
  3664. ---------------------------------------------------------------
  3665. [ 2025-05-27T16:24:20+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/usermoneyinfo?limit=10&token=662e8249-4367-48d0-8a14-fcc13cb87468
  3666. [运行时间:0.054905s] [吞吐率:18.21req/s] [内存消耗:3,854.33kb] [文件加载:80]
  3667. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000029s ]
  3668. [ info ] [ CACHE ] INIT File
  3669. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001154s ]
  3670. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3671. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000252s ]
  3672. [ info ] [ ROUTE ] array (
  3673. 'type' => 'module',
  3674. 'module' =>
  3675. array (
  3676. 0 => 'api',
  3677. 1 => 'user',
  3678. 2 => 'usermoneyinfo',
  3679. ),
  3680. )
  3681. [ info ] [ HEADER ] array (
  3682. 'priority' => 'u=1, i',
  3683. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3684. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3685. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3686. 'sec-fetch-dest' => 'empty',
  3687. 'sec-fetch-mode' => 'cors',
  3688. 'sec-fetch-site' => 'same-origin',
  3689. 'accept' => '*/*',
  3690. 'sec-ch-ua-mobile' => '?1',
  3691. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3692. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3693. 'sec-ch-ua-platform' => '"Android"',
  3694. 'host' => 'ts.shanghairongxuan.top',
  3695. 'content-length' => '',
  3696. 'content-type' => '',
  3697. )
  3698. [ info ] [ PARAM ] array (
  3699. 'limit' => '10',
  3700. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3701. )
  3702. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3703. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001122s ]
  3704. [ info ] [ TOKEN ] INIT Mysql
  3705. [ info ] [ DB ] INIT mysql
  3706. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3707. [ info ] [ RUN ] app\api\controller\User->usermoneyinfo[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3708. [ info ] [ LOG ] INIT File
  3709. ---------------------------------------------------------------
  3710. [ 2025-05-27T16:24:21+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3711. [运行时间:0.054878s] [吞吐率:18.22req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3712. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
  3713. [ info ] [ CACHE ] INIT File
  3714. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001204s ]
  3715. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3716. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000245s ]
  3717. [ info ] [ ROUTE ] array (
  3718. 'type' => 'module',
  3719. 'module' =>
  3720. array (
  3721. 0 => 'api',
  3722. 1 => 'user',
  3723. 2 => 'index',
  3724. ),
  3725. )
  3726. [ info ] [ HEADER ] array (
  3727. 'priority' => 'u=1, i',
  3728. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3729. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3730. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3731. 'sec-fetch-dest' => 'empty',
  3732. 'sec-fetch-mode' => 'cors',
  3733. 'sec-fetch-site' => 'same-origin',
  3734. 'accept' => '*/*',
  3735. 'sec-ch-ua-mobile' => '?1',
  3736. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3737. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3738. 'sec-ch-ua-platform' => '"Android"',
  3739. 'host' => 'ts.shanghairongxuan.top',
  3740. 'content-length' => '',
  3741. 'content-type' => '',
  3742. )
  3743. [ info ] [ PARAM ] array (
  3744. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3745. 'uid' => '1552',
  3746. )
  3747. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3748. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001338s ]
  3749. [ info ] [ TOKEN ] INIT Mysql
  3750. [ info ] [ DB ] INIT mysql
  3751. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3752. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3753. [ info ] [ LOG ] INIT File
  3754. ---------------------------------------------------------------
  3755. [ 2025-05-27T16:24:24+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/paywx/paywxh5?iswx=&token=662e8249-4367-48d0-8a14-fcc13cb87468&total=30&tdnum=901
  3756. [运行时间:0.056041s] [吞吐率:17.84req/s] [内存消耗:3,447.50kb] [文件加载:78]
  3757. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000032s ]
  3758. [ info ] [ CACHE ] INIT File
  3759. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001340s ]
  3760. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3761. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000275s ]
  3762. [ info ] [ ROUTE ] array (
  3763. 'type' => 'module',
  3764. 'module' =>
  3765. array (
  3766. 0 => 'api',
  3767. 1 => 'paywx',
  3768. 2 => 'paywxh5',
  3769. ),
  3770. )
  3771. [ info ] [ HEADER ] array (
  3772. 'priority' => 'u=1, i',
  3773. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3774. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3775. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3776. 'sec-fetch-dest' => 'empty',
  3777. 'sec-fetch-mode' => 'cors',
  3778. 'sec-fetch-site' => 'same-origin',
  3779. 'accept' => '*/*',
  3780. 'sec-ch-ua-mobile' => '?1',
  3781. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3782. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3783. 'sec-ch-ua-platform' => '"Android"',
  3784. 'host' => 'ts.shanghairongxuan.top',
  3785. 'content-length' => '',
  3786. 'content-type' => '',
  3787. )
  3788. [ info ] [ PARAM ] array (
  3789. 'iswx' => '',
  3790. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3791. 'total' => '30',
  3792. 'tdnum' => '901',
  3793. )
  3794. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3795. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001071s ]
  3796. [ info ] [ TOKEN ] INIT Mysql
  3797. [ info ] [ DB ] INIT mysql
  3798. [ info ] [ RUN ] app\api\controller\Paywx->paywxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/Paywx.php ]
  3799. [ info ] [ LOG ] INIT File
  3800. ---------------------------------------------------------------
  3801. [ 2025-05-27T16:24:24+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top//index/paydsf/wxh5?out_trade_no=2505270418210
  3802. [运行时间:0.363132s] [吞吐率:2.75req/s] [内存消耗:3,753.35kb] [文件加载:77]
  3803. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000027s ]
  3804. [ info ] [ CACHE ] INIT File
  3805. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001322s ]
  3806. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3807. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000279s ]
  3808. [ info ] [ ROUTE ] array (
  3809. 'type' => 'module',
  3810. 'module' =>
  3811. array (
  3812. 0 => 'index',
  3813. 1 => 'paydsf',
  3814. 2 => 'wxh5',
  3815. ),
  3816. )
  3817. [ info ] [ HEADER ] array (
  3818. 'priority' => 'u=0, i',
  3819. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3820. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3821. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3822. 'sec-fetch-dest' => 'document',
  3823. 'sec-fetch-user' => '?1',
  3824. 'sec-fetch-mode' => 'navigate',
  3825. 'sec-fetch-site' => 'same-origin',
  3826. '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',
  3827. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3828. 'upgrade-insecure-requests' => '1',
  3829. 'sec-ch-ua-platform' => '"Android"',
  3830. 'sec-ch-ua-mobile' => '?1',
  3831. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3832. 'host' => 'ts.shanghairongxuan.top',
  3833. 'content-length' => '',
  3834. 'content-type' => '',
  3835. )
  3836. [ info ] [ PARAM ] array (
  3837. 'out_trade_no' => '2505270418210',
  3838. )
  3839. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/index/lang/zh-cn.php
  3840. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001761s ]
  3841. [ info ] [ RUN ] app\index\controller\Paydsf->wxh5[ /www/wwwroot/ts.shanghairongxuan.top/application/index/controller/Paydsf.php ]
  3842. [ info ] [ DB ] INIT mysql
  3843. [ info ] [ LOG ] INIT File
  3844. ---------------------------------------------------------------
  3845. [ 2025-05-27T16:24:26+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3846. [运行时间:0.111513s] [吞吐率:8.97req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3847. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000118s ]
  3848. [ info ] [ CACHE ] INIT File
  3849. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.007957s ]
  3850. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3851. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.001158s ]
  3852. [ info ] [ ROUTE ] array (
  3853. 'type' => 'module',
  3854. 'module' =>
  3855. array (
  3856. 0 => 'api',
  3857. 1 => 'user',
  3858. 2 => 'index',
  3859. ),
  3860. )
  3861. [ info ] [ HEADER ] array (
  3862. 'priority' => 'u=1, i',
  3863. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3864. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3865. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3866. 'sec-fetch-dest' => 'empty',
  3867. 'sec-fetch-mode' => 'cors',
  3868. 'sec-fetch-site' => 'same-origin',
  3869. 'accept' => '*/*',
  3870. 'sec-ch-ua-mobile' => '?1',
  3871. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3872. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3873. 'sec-ch-ua-platform' => '"Android"',
  3874. 'host' => 'ts.shanghairongxuan.top',
  3875. 'content-length' => '',
  3876. 'content-type' => '',
  3877. )
  3878. [ info ] [ PARAM ] array (
  3879. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3880. 'uid' => '1552',
  3881. )
  3882. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3883. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.003605s ]
  3884. [ info ] [ TOKEN ] INIT Mysql
  3885. [ info ] [ DB ] INIT mysql
  3886. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3887. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3888. [ info ] [ LOG ] INIT File
  3889. ---------------------------------------------------------------
  3890. [ 2025-05-27T16:26:08+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3891. [运行时间:0.062368s] [吞吐率:16.03req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3892. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000036s ]
  3893. [ info ] [ CACHE ] INIT File
  3894. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001427s ]
  3895. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3896. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000303s ]
  3897. [ info ] [ ROUTE ] array (
  3898. 'type' => 'module',
  3899. 'module' =>
  3900. array (
  3901. 0 => 'api',
  3902. 1 => 'user',
  3903. 2 => 'index',
  3904. ),
  3905. )
  3906. [ info ] [ HEADER ] array (
  3907. 'priority' => 'u=1, i',
  3908. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3909. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3910. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3911. 'sec-fetch-dest' => 'empty',
  3912. 'sec-fetch-mode' => 'cors',
  3913. 'sec-fetch-site' => 'same-origin',
  3914. 'accept' => '*/*',
  3915. 'sec-ch-ua-mobile' => '?1',
  3916. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3917. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3918. 'sec-ch-ua-platform' => '"Android"',
  3919. 'host' => 'ts.shanghairongxuan.top',
  3920. 'content-length' => '',
  3921. 'content-type' => '',
  3922. )
  3923. [ info ] [ PARAM ] array (
  3924. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3925. 'uid' => '1552',
  3926. )
  3927. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3928. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001586s ]
  3929. [ info ] [ TOKEN ] INIT Mysql
  3930. [ info ] [ DB ] INIT mysql
  3931. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3932. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3933. [ info ] [ LOG ] INIT File
  3934. ---------------------------------------------------------------
  3935. [ 2025-05-27T16:26:49+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3936. [运行时间:0.051976s] [吞吐率:19.24req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3937. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000030s ]
  3938. [ info ] [ CACHE ] INIT File
  3939. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001367s ]
  3940. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3941. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000294s ]
  3942. [ info ] [ ROUTE ] array (
  3943. 'type' => 'module',
  3944. 'module' =>
  3945. array (
  3946. 0 => 'api',
  3947. 1 => 'user',
  3948. 2 => 'index',
  3949. ),
  3950. )
  3951. [ info ] [ HEADER ] array (
  3952. 'priority' => 'u=1, i',
  3953. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3954. 'accept-encoding' => 'gzip, deflate, br, zstd',
  3955. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  3956. 'sec-fetch-dest' => 'empty',
  3957. 'sec-fetch-mode' => 'cors',
  3958. 'sec-fetch-site' => 'same-origin',
  3959. 'accept' => '*/*',
  3960. 'sec-ch-ua-mobile' => '?1',
  3961. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  3962. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  3963. 'sec-ch-ua-platform' => '"Android"',
  3964. 'host' => 'ts.shanghairongxuan.top',
  3965. 'content-length' => '',
  3966. 'content-type' => '',
  3967. )
  3968. [ info ] [ PARAM ] array (
  3969. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  3970. 'uid' => '1552',
  3971. )
  3972. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  3973. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001199s ]
  3974. [ info ] [ TOKEN ] INIT Mysql
  3975. [ info ] [ DB ] INIT mysql
  3976. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  3977. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  3978. [ info ] [ LOG ] INIT File
  3979. ---------------------------------------------------------------
  3980. [ 2025-05-27T16:27:46+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  3981. [运行时间:0.068990s] [吞吐率:14.49req/s] [内存消耗:3,845.16kb] [文件加载:80]
  3982. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000031s ]
  3983. [ info ] [ CACHE ] INIT File
  3984. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001269s ]
  3985. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  3986. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000250s ]
  3987. [ info ] [ ROUTE ] array (
  3988. 'type' => 'module',
  3989. 'module' =>
  3990. array (
  3991. 0 => 'api',
  3992. 1 => 'user',
  3993. 2 => 'index',
  3994. ),
  3995. )
  3996. [ info ] [ HEADER ] array (
  3997. 'priority' => 'u=1, i',
  3998. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  3999. 'accept-encoding' => 'gzip, deflate, br, zstd',
  4000. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  4001. 'sec-fetch-dest' => 'empty',
  4002. 'sec-fetch-mode' => 'cors',
  4003. 'sec-fetch-site' => 'same-origin',
  4004. 'accept' => '*/*',
  4005. 'sec-ch-ua-mobile' => '?1',
  4006. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  4007. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  4008. 'sec-ch-ua-platform' => '"Android"',
  4009. 'host' => 'ts.shanghairongxuan.top',
  4010. 'content-length' => '',
  4011. 'content-type' => '',
  4012. )
  4013. [ info ] [ PARAM ] array (
  4014. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  4015. 'uid' => '1552',
  4016. )
  4017. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  4018. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001437s ]
  4019. [ info ] [ TOKEN ] INIT Mysql
  4020. [ info ] [ DB ] INIT mysql
  4021. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  4022. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  4023. [ info ] [ LOG ] INIT File
  4024. ---------------------------------------------------------------
  4025. [ 2025-05-27T16:43:17+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  4026. [运行时间:0.064433s] [吞吐率:15.52req/s] [内存消耗:3,845.16kb] [文件加载:80]
  4027. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  4028. [ info ] [ CACHE ] INIT File
  4029. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001525s ]
  4030. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  4031. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000347s ]
  4032. [ info ] [ ROUTE ] array (
  4033. 'type' => 'module',
  4034. 'module' =>
  4035. array (
  4036. 0 => 'api',
  4037. 1 => 'user',
  4038. 2 => 'index',
  4039. ),
  4040. )
  4041. [ info ] [ HEADER ] array (
  4042. 'priority' => 'u=1, i',
  4043. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  4044. 'accept-encoding' => 'gzip, deflate, br, zstd',
  4045. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  4046. 'sec-fetch-dest' => 'empty',
  4047. 'sec-fetch-mode' => 'cors',
  4048. 'sec-fetch-site' => 'same-origin',
  4049. 'accept' => '*/*',
  4050. 'sec-ch-ua-mobile' => '?1',
  4051. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  4052. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  4053. 'sec-ch-ua-platform' => '"Android"',
  4054. 'host' => 'ts.shanghairongxuan.top',
  4055. 'content-length' => '',
  4056. 'content-type' => '',
  4057. )
  4058. [ info ] [ PARAM ] array (
  4059. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  4060. 'uid' => '1552',
  4061. )
  4062. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  4063. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001330s ]
  4064. [ info ] [ TOKEN ] INIT Mysql
  4065. [ info ] [ DB ] INIT mysql
  4066. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  4067. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  4068. [ info ] [ LOG ] INIT File
  4069. ---------------------------------------------------------------
  4070. [ 2025-05-27T16:45:09+08:00 ] 125.126.90.81 GET ts.shanghairongxuan.top/api/user/index?token=662e8249-4367-48d0-8a14-fcc13cb87468&uid=1552
  4071. [运行时间:0.054561s] [吞吐率:18.33req/s] [内存消耗:3,845.16kb] [文件加载:80]
  4072. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  4073. [ info ] [ CACHE ] INIT File
  4074. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001436s ]
  4075. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/thinkphp/lang/zh-cn.php
  4076. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000220s ]
  4077. [ info ] [ ROUTE ] array (
  4078. 'type' => 'module',
  4079. 'module' =>
  4080. array (
  4081. 0 => 'api',
  4082. 1 => 'user',
  4083. 2 => 'index',
  4084. ),
  4085. )
  4086. [ info ] [ HEADER ] array (
  4087. 'priority' => 'u=1, i',
  4088. 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  4089. 'accept-encoding' => 'gzip, deflate, br, zstd',
  4090. 'referer' => 'https://ts.shanghairongxuan.top/h5/',
  4091. 'sec-fetch-dest' => 'empty',
  4092. 'sec-fetch-mode' => 'cors',
  4093. 'sec-fetch-site' => 'same-origin',
  4094. 'accept' => '*/*',
  4095. 'sec-ch-ua-mobile' => '?1',
  4096. 'sec-ch-ua' => '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"',
  4097. 'user-agent' => 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0',
  4098. 'sec-ch-ua-platform' => '"Android"',
  4099. 'host' => 'ts.shanghairongxuan.top',
  4100. 'content-length' => '',
  4101. 'content-type' => '',
  4102. )
  4103. [ info ] [ PARAM ] array (
  4104. 'token' => '662e8249-4367-48d0-8a14-fcc13cb87468',
  4105. 'uid' => '1552',
  4106. )
  4107. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn.php
  4108. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001363s ]
  4109. [ info ] [ TOKEN ] INIT Mysql
  4110. [ info ] [ DB ] INIT mysql
  4111. [ info ] [ LANG ] /www/wwwroot/ts.shanghairongxuan.top/public/../application/api/lang/zh-cn/user.php
  4112. [ info ] [ RUN ] app\api\controller\User->index[ /www/wwwroot/ts.shanghairongxuan.top/application/api/controller/User.php ]
  4113. [ info ] [ LOG ] INIT File