single.log 289 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328
  1. ---------------------------------------------------------------
  2. [2023-12-22T17:52:23+08:00] 127.0.0.1 GET gaoyx.com/admin/index/clearruntime.html?spm=m-64-175-301&open_type=modal
  3. [运行时间:0.051647s] [吞吐率:19.36req/s] [内存消耗:3,662.78kb] [文件加载:180]
  4. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  6. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  7. [ info ] [ ROUTE ] array (
  8. )
  9. [ info ] [ HEADER ] array (
  10. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtKiwW/gUx6Odq0PdXnOfHkA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtOJWRIPDy6TlVgbhqaj6RFlsf_OF7htq1fuPl0OF85F9ZBJ6CI66hct3P9GiSLSiv1uu9kiW9Ur1pMhINL6HEENDli7fSjkGeH7xiC240oYHSrclUpDgpjrseAeCi0pUsPRjiP3HP9LkZnLfu1qPXN-mKCSxCJu9oo8jPp2ddeM8; PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtLXO6tBvnOlzuE/eFboQr94%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBQ--sqgShSO1mxWsrBbbn91B0Yom807Va9ytpiyYdkjITDAh-jXttiVzlZRLxL_rC21yOPocpwjjyzfn7QedvuOwQYV8_7wKLSY4qZVM39H6FTf2ydtsAzumJey2b6D8Z1afxyBtkn2LNA_fZClfJ6Tp07ZKvjvQnFhAFkK83Cn',
  11. 'accept-language' => 'zh-CN,zh;q=0.9',
  12. 'accept-encoding' => 'gzip, deflate, br',
  13. 'referer' => 'https://gaoyx.com/admin.html',
  14. 'sec-fetch-dest' => 'empty',
  15. 'sec-fetch-mode' => 'cors',
  16. 'sec-fetch-site' => 'same-origin',
  17. 'sec-ch-ua-platform' => '"Windows"',
  18. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  19. 'sec-ch-ua-mobile' => '?0',
  20. 'x-requested-with' => 'XMLHttpRequest',
  21. 'accept' => '*/*',
  22. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  23. 'connection' => 'keep-alive',
  24. 'host' => 'gaoyx.com',
  25. 'content-length' => '',
  26. 'content-type' => '',
  27. )
  28. [ info ] [ PARAM ] array (
  29. 'spm' => 'm-64-175-301',
  30. 'open_type' => 'modal',
  31. )
  32. ---------------------------------------------------------------
  33. [2023-12-22T17:52:26+08:00] 127.0.0.1 GET gaoyx.com/user/message/index.html?spm=m-64-175-301
  34. [运行时间:0.596115s] [吞吐率:1.68req/s] [内存消耗:4,328.74kb] [文件加载:157]
  35. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  36. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  37. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  38. [ info ] [ ROUTE ] array (
  39. )
  40. [ info ] [ HEADER ] array (
  41. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtLXO6tBvnOlzuE/eFboQr94%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBQ--sqgShSO1mxWsrBbbn91B0Yom807Va9ytpiyYdkjITDAh-jXttiVzlZRLxL_rC21yOPocpwjjyzfn7QedvuOwQYV8_7wKLSY4qZVM39H6FTf2ydtsAzumJey2b6D8Z1afxyBtkn2LNA_fZClfJ6Tp07ZKvjvQnFhAFkK83Cn',
  42. 'accept-language' => 'zh-CN,zh;q=0.9',
  43. 'accept-encoding' => 'gzip, deflate, br',
  44. 'referer' => 'https://gaoyx.com/admin.html',
  45. 'sec-fetch-dest' => 'empty',
  46. 'sec-fetch-mode' => 'cors',
  47. 'sec-fetch-site' => 'same-origin',
  48. 'sec-ch-ua-platform' => '"Windows"',
  49. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  50. 'sec-ch-ua-mobile' => '?0',
  51. 'x-requested-with' => 'XMLHttpRequest',
  52. 'accept' => '*/*',
  53. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  54. 'connection' => 'keep-alive',
  55. 'host' => 'gaoyx.com',
  56. 'content-length' => '',
  57. 'content-type' => '',
  58. )
  59. [ info ] [ PARAM ] array (
  60. 'spm' => 'm-64-175-301',
  61. )
  62. [ info ] [ DB ] INIT mysql
  63. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\index.html [ array (
  64. 0 => 'page',
  65. 1 => 'list',
  66. 2 => 'table',
  67. 3 => 'app',
  68. 4 => 'request',
  69. 5 => 'csrf_state',
  70. 6 => 'csrf_message',
  71. 7 => 'title',
  72. 8 => 'pagehtml',
  73. ) ]
  74. ---------------------------------------------------------------
  75. [2023-12-22T17:52:33+08:00] 127.0.0.1 GET gaoyx.com/user/message/edit.html?id=229&spm=m-64-175-301&open_type=modal
  76. [运行时间:5.134084s] [吞吐率:0.19req/s] [内存消耗:5,518.77kb] [文件加载:179]
  77. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  78. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  79. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  80. [ info ] [ ROUTE ] array (
  81. )
  82. [ info ] [ HEADER ] array (
  83. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtLXO6tBvnOlzuE/eFboQr94%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBQ--sqgShSO1mxWsrBbbn91B0Yom807Va9ytpiyYdkjITDAh-jXttiVzlZRLxL_rC21yOPocpwjjyzfn7QedvuOwQYV8_7wKLSY4qZVM39H6FTf2ydtsAzumJey2b6D8Z1afxyBtkn2LNA_fZClfJ6Tp07ZKvjvQnFhAFkK83Cn; page-limit=20',
  84. 'accept-language' => 'zh-CN,zh;q=0.9',
  85. 'accept-encoding' => 'gzip, deflate, br',
  86. 'referer' => 'https://gaoyx.com/admin.html',
  87. 'sec-fetch-dest' => 'empty',
  88. 'sec-fetch-mode' => 'cors',
  89. 'sec-fetch-site' => 'same-origin',
  90. 'sec-ch-ua-platform' => '"Windows"',
  91. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  92. 'sec-ch-ua-mobile' => '?0',
  93. 'x-requested-with' => 'XMLHttpRequest',
  94. 'accept' => '*/*',
  95. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  96. 'connection' => 'keep-alive',
  97. 'host' => 'gaoyx.com',
  98. 'content-length' => '',
  99. 'content-type' => '',
  100. )
  101. [ info ] [ PARAM ] array (
  102. 'id' => '229',
  103. 'spm' => 'm-64-175-301',
  104. 'open_type' => 'modal',
  105. )
  106. [ info ] [ DB ] INIT mysql
  107. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\form.html [ array (
  108. 0 => 'vo',
  109. 1 => 'table',
  110. 2 => 'app',
  111. 3 => 'request',
  112. 4 => 'csrf_state',
  113. 5 => 'csrf_message',
  114. 6 => 'title',
  115. 7 => 'module_arr',
  116. 8 => 'module_list',
  117. ) ]
  118. ---------------------------------------------------------------
  119. [2023-12-22T17:52:44+08:00] 127.0.0.1 GET gaoyx.com/user/message/add.html?spm=m-64-175-301&open_type=modal
  120. [运行时间:5.085973s] [吞吐率:0.20req/s] [内存消耗:5,517.20kb] [文件加载:179]
  121. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  122. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  123. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  124. [ info ] [ ROUTE ] array (
  125. )
  126. [ info ] [ HEADER ] array (
  127. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtLXO6tBvnOlzuE/eFboQr94%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBQ--sqgShSO1mxWsrBbbn91B0Yom807Va9ytpiyYdkjITDAh-jXttiVzlZRLxL_rC21yOPocpwjjyzfn7QedvuOwQYV8_7wKLSY4qZVM39H6FTf2ydtsAzumJey2b6D8Z1afxyBtkn2LNA_fZClfJ6Tp07ZKvjvQnFhAFkK83Cn; page-limit=20',
  128. 'accept-language' => 'zh-CN,zh;q=0.9',
  129. 'accept-encoding' => 'gzip, deflate, br',
  130. 'referer' => 'https://gaoyx.com/admin.html',
  131. 'sec-fetch-dest' => 'empty',
  132. 'sec-fetch-mode' => 'cors',
  133. 'sec-fetch-site' => 'same-origin',
  134. 'sec-ch-ua-platform' => '"Windows"',
  135. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  136. 'sec-ch-ua-mobile' => '?0',
  137. 'x-requested-with' => 'XMLHttpRequest',
  138. 'accept' => '*/*',
  139. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  140. 'connection' => 'keep-alive',
  141. 'host' => 'gaoyx.com',
  142. 'content-length' => '',
  143. 'content-type' => '',
  144. )
  145. [ info ] [ PARAM ] array (
  146. 'spm' => 'm-64-175-301',
  147. 'open_type' => 'modal',
  148. )
  149. [ info ] [ DB ] INIT mysql
  150. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\form.html [ array (
  151. 0 => 'vo',
  152. 1 => 'table',
  153. 2 => 'app',
  154. 3 => 'request',
  155. 4 => 'csrf_state',
  156. 5 => 'csrf_message',
  157. 6 => 'title',
  158. 7 => 'module_arr',
  159. 8 => 'module_list',
  160. ) ]
  161. ---------------------------------------------------------------
  162. [2023-12-22T17:56:08+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  163. [运行时间:5.425538s] [吞吐率:0.18req/s] [内存消耗:14,917.48kb] [文件加载:337]
  164. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  165. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  166. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  167. [ info ] [ ROUTE ] array (
  168. )
  169. [ info ] [ HEADER ] array (
  170. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtLXO6tBvnOlzuE/eFboQr94%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBQ--sqgShSO1mxWsrBbbn91B0Yom807Va9ytpiyYdkjITDAh-jXttiVzlZRLxL_rC21yOPocpwjjyzfn7QedvuOwQYV8_7wKLSY4qZVM39H6FTf2ydtsAzumJey2b6D8Z1afxyBtkn2LNA_fZClfJ6Tp07ZKvjvQnFhAFkK83Cn',
  171. 'accept-language' => 'zh-CN,zh;q=0.9',
  172. 'accept-encoding' => 'gzip, deflate, br',
  173. 'referer' => 'https://gaoyx.com/admin.html',
  174. 'sec-fetch-dest' => 'document',
  175. 'sec-fetch-user' => '?1',
  176. 'sec-fetch-mode' => 'navigate',
  177. 'sec-fetch-site' => 'same-origin',
  178. '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',
  179. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  180. 'upgrade-insecure-requests' => '1',
  181. 'sec-ch-ua-platform' => '"Windows"',
  182. 'sec-ch-ua-mobile' => '?0',
  183. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  184. 'cache-control' => 'max-age=0',
  185. 'connection' => 'keep-alive',
  186. 'host' => 'gaoyx.com',
  187. 'content-length' => '',
  188. 'content-type' => '',
  189. )
  190. [ info ] [ PARAM ] array (
  191. )
  192. [ info ] [ DB ] INIT mysql
  193. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  194. 0 => 'app',
  195. 1 => 'request',
  196. 2 => 'csrf_state',
  197. 3 => 'csrf_message',
  198. 4 => 'title',
  199. 5 => 'menus',
  200. ) ]
  201. ---------------------------------------------------------------
  202. [2023-12-22T17:56:09+08:00] 127.0.0.1 GET gaoyx.com/user/message/index.html?spm=m-64-175-301
  203. [运行时间:0.655728s] [吞吐率:1.53req/s] [内存消耗:4,328.76kb] [文件加载:157]
  204. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  205. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  206. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  207. [ info ] [ ROUTE ] array (
  208. )
  209. [ info ] [ HEADER ] array (
  210. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtLXO6tBvnOlzuE/eFboQr94%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBQ--sqgShSO1mxWsrBbbn91B0Yom807Va9ytpiyYdkjITDAh-jXttiVzlZRLxL_rC21yOPocpwjjyzfn7QedvuOwQYV8_7wKLSY4qZVM39H6FTf2ydtsAzumJey2b6D8Z1afxyBtkn2LNA_fZClfJ6Tp07ZKvjvQnFhAFkK83Cn',
  211. 'accept-language' => 'zh-CN,zh;q=0.9',
  212. 'accept-encoding' => 'gzip, deflate, br',
  213. 'referer' => 'https://gaoyx.com/admin.html',
  214. 'sec-fetch-dest' => 'empty',
  215. 'sec-fetch-mode' => 'cors',
  216. 'sec-fetch-site' => 'same-origin',
  217. 'sec-ch-ua-platform' => '"Windows"',
  218. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  219. 'sec-ch-ua-mobile' => '?0',
  220. 'x-requested-with' => 'XMLHttpRequest',
  221. 'accept' => '*/*',
  222. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  223. 'connection' => 'keep-alive',
  224. 'host' => 'gaoyx.com',
  225. 'content-length' => '',
  226. 'content-type' => '',
  227. )
  228. [ info ] [ PARAM ] array (
  229. 'spm' => 'm-64-175-301',
  230. )
  231. [ info ] [ DB ] INIT mysql
  232. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\index.html [ array (
  233. 0 => 'page',
  234. 1 => 'list',
  235. 2 => 'table',
  236. 3 => 'app',
  237. 4 => 'request',
  238. 5 => 'csrf_state',
  239. 6 => 'csrf_message',
  240. 7 => 'title',
  241. 8 => 'pagehtml',
  242. ) ]
  243. ---------------------------------------------------------------
  244. [2023-12-22T17:56:16+08:00] 127.0.0.1 GET gaoyx.com/user/message/add.html?spm=m-64-175-301&open_type=modal
  245. [运行时间:6.127885s] [吞吐率:0.16req/s] [内存消耗:5,511.05kb] [文件加载:179]
  246. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  247. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  248. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  249. [ info ] [ ROUTE ] array (
  250. )
  251. [ info ] [ HEADER ] array (
  252. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtL7HeIyLciYbDKQSZxAPByM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtLBSrcID7O95iTNkn0blOeIzjtVGDktFjGXViyAR2LrmSXU8wm4TUOc8L-4QoJJZpejpw5G7peX9HNIpk76-1xQDCiccU3YmffIQrAghHuT4lsQRBcSQ1KcWvWUy6ewUm1X4ZM4QAFvBEpwOml-Dp0VbBIV29WAzhHlSro2yZUJF; page-limit=20',
  253. 'accept-language' => 'zh-CN,zh;q=0.9',
  254. 'accept-encoding' => 'gzip, deflate, br',
  255. 'referer' => 'https://gaoyx.com/admin.html',
  256. 'sec-fetch-dest' => 'empty',
  257. 'sec-fetch-mode' => 'cors',
  258. 'sec-fetch-site' => 'same-origin',
  259. 'sec-ch-ua-platform' => '"Windows"',
  260. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  261. 'sec-ch-ua-mobile' => '?0',
  262. 'x-requested-with' => 'XMLHttpRequest',
  263. 'accept' => '*/*',
  264. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  265. 'connection' => 'keep-alive',
  266. 'host' => 'gaoyx.com',
  267. 'content-length' => '',
  268. 'content-type' => '',
  269. )
  270. [ info ] [ PARAM ] array (
  271. 'spm' => 'm-64-175-301',
  272. 'open_type' => 'modal',
  273. )
  274. [ info ] [ DB ] INIT mysql
  275. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\form.html [ array (
  276. 0 => 'vo',
  277. 1 => 'table',
  278. 2 => 'app',
  279. 3 => 'request',
  280. 4 => 'csrf_state',
  281. 5 => 'csrf_message',
  282. 6 => 'title',
  283. 7 => 'module_arr',
  284. 8 => 'module_list',
  285. ) ]
  286. ---------------------------------------------------------------
  287. [2023-12-22T17:56:52+08:00] 127.0.0.1 GET gaoyx.com/mall/express_company/index.html?spm=m-136-196-200
  288. [运行时间:0.553475s] [吞吐率:1.81req/s] [内存消耗:4,314.73kb] [文件加载:158]
  289. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  290. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  291. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  292. [ info ] [ ROUTE ] array (
  293. )
  294. [ info ] [ HEADER ] array (
  295. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtL7HeIyLciYbDKQSZxAPByM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtLBSrcID7O95iTNkn0blOeIzjtVGDktFjGXViyAR2LrmSXU8wm4TUOc8L-4QoJJZpejpw5G7peX9HNIpk76-1xQDCiccU3YmffIQrAghHuT4lsQRBcSQ1KcWvWUy6ewUm1X4ZM4QAFvBEpwOml-Dp0VbBIV29WAzhHlSro2yZUJF',
  296. 'accept-language' => 'zh-CN,zh;q=0.9',
  297. 'accept-encoding' => 'gzip, deflate, br',
  298. 'referer' => 'https://gaoyx.com/admin.html',
  299. 'sec-fetch-dest' => 'empty',
  300. 'sec-fetch-mode' => 'cors',
  301. 'sec-fetch-site' => 'same-origin',
  302. 'sec-ch-ua-platform' => '"Windows"',
  303. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  304. 'sec-ch-ua-mobile' => '?0',
  305. 'x-requested-with' => 'XMLHttpRequest',
  306. 'accept' => '*/*',
  307. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  308. 'connection' => 'keep-alive',
  309. 'host' => 'gaoyx.com',
  310. 'content-length' => '',
  311. 'content-type' => '',
  312. )
  313. [ info ] [ PARAM ] array (
  314. 'spm' => 'm-136-196-200',
  315. )
  316. [ info ] [ DB ] INIT mysql
  317. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\express_company\index.html [ array (
  318. 0 => 'page',
  319. 1 => 'list',
  320. 2 => 'table',
  321. 3 => 'app',
  322. 4 => 'request',
  323. 5 => 'csrf_state',
  324. 6 => 'csrf_message',
  325. 7 => 'title',
  326. 8 => 'pagehtml',
  327. ) ]
  328. ---------------------------------------------------------------
  329. [2023-12-22T17:56:53+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  330. [运行时间:0.539653s] [吞吐率:1.85req/s] [内存消耗:4,311.63kb] [文件加载:158]
  331. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  332. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  333. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  334. [ info ] [ ROUTE ] array (
  335. )
  336. [ info ] [ HEADER ] array (
  337. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtL7HeIyLciYbDKQSZxAPByM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtLBSrcID7O95iTNkn0blOeIzjtVGDktFjGXViyAR2LrmSXU8wm4TUOc8L-4QoJJZpejpw5G7peX9HNIpk76-1xQDCiccU3YmffIQrAghHuT4lsQRBcSQ1KcWvWUy6ewUm1X4ZM4QAFvBEpwOml-Dp0VbBIV29WAzhHlSro2yZUJF; page-limit=20',
  338. 'accept-language' => 'zh-CN,zh;q=0.9',
  339. 'accept-encoding' => 'gzip, deflate, br',
  340. 'referer' => 'https://gaoyx.com/admin.html',
  341. 'sec-fetch-dest' => 'empty',
  342. 'sec-fetch-mode' => 'cors',
  343. 'sec-fetch-site' => 'same-origin',
  344. 'sec-ch-ua-platform' => '"Windows"',
  345. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  346. 'sec-ch-ua-mobile' => '?0',
  347. 'x-requested-with' => 'XMLHttpRequest',
  348. 'accept' => '*/*',
  349. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  350. 'connection' => 'keep-alive',
  351. 'host' => 'gaoyx.com',
  352. 'content-length' => '',
  353. 'content-type' => '',
  354. )
  355. [ info ] [ PARAM ] array (
  356. 'spm' => 'm-277-280-197',
  357. )
  358. [ info ] [ DB ] INIT mysql
  359. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  360. 0 => 'page',
  361. 1 => 'list',
  362. 2 => 'table',
  363. 3 => 'app',
  364. 4 => 'request',
  365. 5 => 'csrf_state',
  366. 6 => 'csrf_message',
  367. 7 => 'title',
  368. 8 => 'place_desc',
  369. 9 => 'pagehtml',
  370. ) ]
  371. ---------------------------------------------------------------
  372. [2023-12-22T17:56:56+08:00] 127.0.0.1 GET gaoyx.com/nutrition/datum_cate/index.html?spm=m-140-165-166
  373. [运行时间:0.443632s] [吞吐率:2.25req/s] [内存消耗:4,184.22kb] [文件加载:154]
  374. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  375. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  376. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  377. [ info ] [ ROUTE ] array (
  378. )
  379. [ info ] [ HEADER ] array (
  380. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtL7HeIyLciYbDKQSZxAPByM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtLBSrcID7O95iTNkn0blOeIzjtVGDktFjGXViyAR2LrmSXU8wm4TUOc8L-4QoJJZpejpw5G7peX9HNIpk76-1xQDCiccU3YmffIQrAghHuT4lsQRBcSQ1KcWvWUy6ewUm1X4ZM4QAFvBEpwOml-Dp0VbBIV29WAzhHlSro2yZUJF; page-limit=20',
  381. 'accept-language' => 'zh-CN,zh;q=0.9',
  382. 'accept-encoding' => 'gzip, deflate, br',
  383. 'referer' => 'https://gaoyx.com/admin.html',
  384. 'sec-fetch-dest' => 'empty',
  385. 'sec-fetch-mode' => 'cors',
  386. 'sec-fetch-site' => 'same-origin',
  387. 'sec-ch-ua-platform' => '"Windows"',
  388. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  389. 'sec-ch-ua-mobile' => '?0',
  390. 'x-requested-with' => 'XMLHttpRequest',
  391. 'accept' => '*/*',
  392. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  393. 'connection' => 'keep-alive',
  394. 'host' => 'gaoyx.com',
  395. 'content-length' => '',
  396. 'content-type' => '',
  397. )
  398. [ info ] [ PARAM ] array (
  399. 'spm' => 'm-140-165-166',
  400. )
  401. [ info ] [ DB ] INIT mysql
  402. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\nutrition\view\datum_cate\index.html [ array (
  403. 0 => 'list',
  404. 1 => 'table',
  405. 2 => 'app',
  406. 3 => 'request',
  407. 4 => 'csrf_state',
  408. 5 => 'csrf_message',
  409. 6 => 'title',
  410. ) ]
  411. ---------------------------------------------------------------
  412. [2023-12-22T17:56:58+08:00] 127.0.0.1 GET gaoyx.com/mall/express_company/index.html?spm=m-136-196-200
  413. [运行时间:0.516000s] [吞吐率:1.94req/s] [内存消耗:4,315.73kb] [文件加载:158]
  414. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  415. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  416. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  417. [ info ] [ ROUTE ] array (
  418. )
  419. [ info ] [ HEADER ] array (
  420. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtL7HeIyLciYbDKQSZxAPByM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtLBSrcID7O95iTNkn0blOeIzjtVGDktFjGXViyAR2LrmSXU8wm4TUOc8L-4QoJJZpejpw5G7peX9HNIpk76-1xQDCiccU3YmffIQrAghHuT4lsQRBcSQ1KcWvWUy6ewUm1X4ZM4QAFvBEpwOml-Dp0VbBIV29WAzhHlSro2yZUJF; page-limit=20',
  421. 'accept-language' => 'zh-CN,zh;q=0.9',
  422. 'accept-encoding' => 'gzip, deflate, br',
  423. 'referer' => 'https://gaoyx.com/admin.html',
  424. 'sec-fetch-dest' => 'empty',
  425. 'sec-fetch-mode' => 'cors',
  426. 'sec-fetch-site' => 'same-origin',
  427. 'sec-ch-ua-platform' => '"Windows"',
  428. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  429. 'sec-ch-ua-mobile' => '?0',
  430. 'x-requested-with' => 'XMLHttpRequest',
  431. 'accept' => '*/*',
  432. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  433. 'connection' => 'keep-alive',
  434. 'host' => 'gaoyx.com',
  435. 'content-length' => '',
  436. 'content-type' => '',
  437. )
  438. [ info ] [ PARAM ] array (
  439. 'spm' => 'm-136-196-200',
  440. )
  441. [ info ] [ DB ] INIT mysql
  442. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\express_company\index.html [ array (
  443. 0 => 'page',
  444. 1 => 'list',
  445. 2 => 'table',
  446. 3 => 'app',
  447. 4 => 'request',
  448. 5 => 'csrf_state',
  449. 6 => 'csrf_message',
  450. 7 => 'title',
  451. 8 => 'pagehtml',
  452. ) ]
  453. ---------------------------------------------------------------
  454. [2023-12-22T17:56:58+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/index.html?spm=m-136-283-284
  455. [运行时间:0.419348s] [吞吐率:2.38req/s] [内存消耗:4,238.83kb] [文件加载:155]
  456. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  457. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  458. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  459. [ info ] [ ROUTE ] array (
  460. )
  461. [ info ] [ HEADER ] array (
  462. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtL7HeIyLciYbDKQSZxAPByM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtLBSrcID7O95iTNkn0blOeIzjtVGDktFjGXViyAR2LrmSXU8wm4TUOc8L-4QoJJZpejpw5G7peX9HNIpk76-1xQDCiccU3YmffIQrAghHuT4lsQRBcSQ1KcWvWUy6ewUm1X4ZM4QAFvBEpwOml-Dp0VbBIV29WAzhHlSro2yZUJF; page-limit=20',
  463. 'accept-language' => 'zh-CN,zh;q=0.9',
  464. 'accept-encoding' => 'gzip, deflate, br',
  465. 'referer' => 'https://gaoyx.com/admin.html',
  466. 'sec-fetch-dest' => 'empty',
  467. 'sec-fetch-mode' => 'cors',
  468. 'sec-fetch-site' => 'same-origin',
  469. 'sec-ch-ua-platform' => '"Windows"',
  470. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  471. 'sec-ch-ua-mobile' => '?0',
  472. 'x-requested-with' => 'XMLHttpRequest',
  473. 'accept' => '*/*',
  474. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  475. 'connection' => 'keep-alive',
  476. 'host' => 'gaoyx.com',
  477. 'content-length' => '',
  478. 'content-type' => '',
  479. )
  480. [ info ] [ PARAM ] array (
  481. 'spm' => 'm-136-283-284',
  482. )
  483. [ info ] [ DB ] INIT mysql
  484. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\index.html [ array (
  485. 0 => 'list',
  486. 1 => 'table',
  487. 2 => 'app',
  488. 3 => 'request',
  489. 4 => 'csrf_state',
  490. 5 => 'csrf_message',
  491. 6 => 'title',
  492. ) ]
  493. ---------------------------------------------------------------
  494. [2023-12-22T18:00:10+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  495. [运行时间:1.679032s] [吞吐率:0.60req/s] [内存消耗:14,915.15kb] [文件加载:337]
  496. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  497. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  498. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  499. [ info ] [ ROUTE ] array (
  500. )
  501. [ info ] [ HEADER ] array (
  502. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtL7HeIyLciYbDKQSZxAPByM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtLBSrcID7O95iTNkn0blOeIzjtVGDktFjGXViyAR2LrmSXU8wm4TUOc8L-4QoJJZpejpw5G7peX9HNIpk76-1xQDCiccU3YmffIQrAghHuT4lsQRBcSQ1KcWvWUy6ewUm1X4ZM4QAFvBEpwOml-Dp0VbBIV29WAzhHlSro2yZUJF',
  503. 'accept-language' => 'zh-CN,zh;q=0.9',
  504. 'accept-encoding' => 'gzip, deflate, br',
  505. 'referer' => 'https://gaoyx.com/admin.html',
  506. 'sec-fetch-dest' => 'document',
  507. 'sec-fetch-user' => '?1',
  508. 'sec-fetch-mode' => 'navigate',
  509. 'sec-fetch-site' => 'same-origin',
  510. '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',
  511. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  512. 'upgrade-insecure-requests' => '1',
  513. 'sec-ch-ua-platform' => '"Windows"',
  514. 'sec-ch-ua-mobile' => '?0',
  515. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  516. 'cache-control' => 'max-age=0',
  517. 'connection' => 'keep-alive',
  518. 'host' => 'gaoyx.com',
  519. 'content-length' => '',
  520. 'content-type' => '',
  521. )
  522. [ info ] [ PARAM ] array (
  523. )
  524. [ info ] [ DB ] INIT mysql
  525. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  526. 0 => 'app',
  527. 1 => 'request',
  528. 2 => 'csrf_state',
  529. 3 => 'csrf_message',
  530. 4 => 'title',
  531. 5 => 'menus',
  532. ) ]
  533. ---------------------------------------------------------------
  534. [2023-12-22T18:00:11+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/index.html?spm=m-136-283-284
  535. [运行时间:0.446208s] [吞吐率:2.24req/s] [内存消耗:4,239.69kb] [文件加载:155]
  536. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  537. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  538. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  539. [ info ] [ ROUTE ] array (
  540. )
  541. [ info ] [ HEADER ] array (
  542. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtL7HeIyLciYbDKQSZxAPByM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtLBSrcID7O95iTNkn0blOeIzjtVGDktFjGXViyAR2LrmSXU8wm4TUOc8L-4QoJJZpejpw5G7peX9HNIpk76-1xQDCiccU3YmffIQrAghHuT4lsQRBcSQ1KcWvWUy6ewUm1X4ZM4QAFvBEpwOml-Dp0VbBIV29WAzhHlSro2yZUJF',
  543. 'accept-language' => 'zh-CN,zh;q=0.9',
  544. 'accept-encoding' => 'gzip, deflate, br',
  545. 'referer' => 'https://gaoyx.com/admin.html',
  546. 'sec-fetch-dest' => 'empty',
  547. 'sec-fetch-mode' => 'cors',
  548. 'sec-fetch-site' => 'same-origin',
  549. 'sec-ch-ua-platform' => '"Windows"',
  550. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  551. 'sec-ch-ua-mobile' => '?0',
  552. 'x-requested-with' => 'XMLHttpRequest',
  553. 'accept' => '*/*',
  554. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  555. 'connection' => 'keep-alive',
  556. 'host' => 'gaoyx.com',
  557. 'content-length' => '',
  558. 'content-type' => '',
  559. )
  560. [ info ] [ PARAM ] array (
  561. 'spm' => 'm-136-283-284',
  562. )
  563. [ info ] [ DB ] INIT mysql
  564. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\index.html [ array (
  565. 0 => 'list',
  566. 1 => 'table',
  567. 2 => 'app',
  568. 3 => 'request',
  569. 4 => 'csrf_state',
  570. 5 => 'csrf_message',
  571. 6 => 'title',
  572. ) ]
  573. ---------------------------------------------------------------
  574. [2023-12-22T18:00:12+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  575. [运行时间:0.544957s] [吞吐率:1.84req/s] [内存消耗:4,295.39kb] [文件加载:158]
  576. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  577. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  578. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  579. [ info ] [ ROUTE ] array (
  580. )
  581. [ info ] [ HEADER ] array (
  582. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtK0iCu8AeQBbabNhxsy9Q2w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wxqZG5ILQ-XIVIVy3v64riEs_TQG9wViGN95ouUla0CPw13ryLLs2_I0UKCe774ShPpnR7Jj1I-OaVOphRzhh53N7gjEUfbGZIrtWB9Ci1ubzMxkMYQp-mmA-JFT4W4kaM6TDd_hfuzTOaaOx3SvdT',
  583. 'accept-language' => 'zh-CN,zh;q=0.9',
  584. 'accept-encoding' => 'gzip, deflate, br',
  585. 'referer' => 'https://gaoyx.com/admin.html',
  586. 'sec-fetch-dest' => 'empty',
  587. 'sec-fetch-mode' => 'cors',
  588. 'sec-fetch-site' => 'same-origin',
  589. 'sec-ch-ua-platform' => '"Windows"',
  590. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  591. 'sec-ch-ua-mobile' => '?0',
  592. 'x-requested-with' => 'XMLHttpRequest',
  593. 'accept' => '*/*',
  594. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  595. 'connection' => 'keep-alive',
  596. 'host' => 'gaoyx.com',
  597. 'content-length' => '',
  598. 'content-type' => '',
  599. )
  600. [ info ] [ PARAM ] array (
  601. 'spm' => 'm-64-175-254',
  602. )
  603. [ info ] [ DB ] INIT mysql
  604. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  605. 0 => 'page',
  606. 1 => 'list',
  607. 2 => 'table',
  608. 3 => 'app',
  609. 4 => 'request',
  610. 5 => 'csrf_state',
  611. 6 => 'csrf_message',
  612. 7 => 'title',
  613. 8 => 'pagehtml',
  614. ) ]
  615. ---------------------------------------------------------------
  616. [2023-12-22T18:00:15+08:00] 127.0.0.1 GET gaoyx.com/user/message/index.html?spm=m-64-175-301
  617. [运行时间:0.551698s] [吞吐率:1.81req/s] [内存消耗:4,327.97kb] [文件加载:157]
  618. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  619. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  620. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  621. [ info ] [ ROUTE ] array (
  622. )
  623. [ info ] [ HEADER ] array (
  624. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtK0iCu8AeQBbabNhxsy9Q2w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wxqZG5ILQ-XIVIVy3v64riEs_TQG9wViGN95ouUla0CPw13ryLLs2_I0UKCe774ShPpnR7Jj1I-OaVOphRzhh53N7gjEUfbGZIrtWB9Ci1ubzMxkMYQp-mmA-JFT4W4kaM6TDd_hfuzTOaaOx3SvdT; page-limit=20',
  625. 'accept-language' => 'zh-CN,zh;q=0.9',
  626. 'accept-encoding' => 'gzip, deflate, br',
  627. 'referer' => 'https://gaoyx.com/admin.html',
  628. 'sec-fetch-dest' => 'empty',
  629. 'sec-fetch-mode' => 'cors',
  630. 'sec-fetch-site' => 'same-origin',
  631. 'sec-ch-ua-platform' => '"Windows"',
  632. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  633. 'sec-ch-ua-mobile' => '?0',
  634. 'x-requested-with' => 'XMLHttpRequest',
  635. 'accept' => '*/*',
  636. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  637. 'connection' => 'keep-alive',
  638. 'host' => 'gaoyx.com',
  639. 'content-length' => '',
  640. 'content-type' => '',
  641. )
  642. [ info ] [ PARAM ] array (
  643. 'spm' => 'm-64-175-301',
  644. )
  645. [ info ] [ DB ] INIT mysql
  646. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\index.html [ array (
  647. 0 => 'page',
  648. 1 => 'list',
  649. 2 => 'table',
  650. 3 => 'app',
  651. 4 => 'request',
  652. 5 => 'csrf_state',
  653. 6 => 'csrf_message',
  654. 7 => 'title',
  655. 8 => 'pagehtml',
  656. ) ]
  657. ---------------------------------------------------------------
  658. [2023-12-22T18:00:26+08:00] 127.0.0.1 GET gaoyx.com/user/message/add.html?spm=m-64-175-301&open_type=modal
  659. [运行时间:5.387691s] [吞吐率:0.19req/s] [内存消耗:5,525.40kb] [文件加载:180]
  660. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  661. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  662. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  663. [ info ] [ ROUTE ] array (
  664. )
  665. [ info ] [ HEADER ] array (
  666. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtK0iCu8AeQBbabNhxsy9Q2w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wxqZG5ILQ-XIVIVy3v64riEs_TQG9wViGN95ouUla0CPw13ryLLs2_I0UKCe774ShPpnR7Jj1I-OaVOphRzhh53N7gjEUfbGZIrtWB9Ci1ubzMxkMYQp-mmA-JFT4W4kaM6TDd_hfuzTOaaOx3SvdT; page-limit=20',
  667. 'accept-language' => 'zh-CN,zh;q=0.9',
  668. 'accept-encoding' => 'gzip, deflate, br',
  669. 'referer' => 'https://gaoyx.com/admin.html',
  670. 'sec-fetch-dest' => 'empty',
  671. 'sec-fetch-mode' => 'cors',
  672. 'sec-fetch-site' => 'same-origin',
  673. 'sec-ch-ua-platform' => '"Windows"',
  674. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  675. 'sec-ch-ua-mobile' => '?0',
  676. 'x-requested-with' => 'XMLHttpRequest',
  677. 'accept' => '*/*',
  678. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  679. 'connection' => 'keep-alive',
  680. 'host' => 'gaoyx.com',
  681. 'content-length' => '',
  682. 'content-type' => '',
  683. )
  684. [ info ] [ PARAM ] array (
  685. 'spm' => 'm-64-175-301',
  686. 'open_type' => 'modal',
  687. )
  688. [ info ] [ DB ] INIT mysql
  689. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\form.html [ array (
  690. 0 => 'vo',
  691. 1 => 'table',
  692. 2 => 'app',
  693. 3 => 'request',
  694. 4 => 'csrf_state',
  695. 5 => 'csrf_message',
  696. 6 => 'title',
  697. 7 => 'module_arr',
  698. 8 => 'module_list',
  699. ) ]
  700. ---------------------------------------------------------------
  701. [2023-12-22T18:01:18+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  702. [运行时间:1.691966s] [吞吐率:0.59req/s] [内存消耗:14,916.73kb] [文件加载:337]
  703. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  704. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  705. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  706. [ info ] [ ROUTE ] array (
  707. )
  708. [ info ] [ HEADER ] array (
  709. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtK0iCu8AeQBbabNhxsy9Q2w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wxqZG5ILQ-XIVIVy3v64riEs_TQG9wViGN95ouUla0CPw13ryLLs2_I0UKCe774ShPpnR7Jj1I-OaVOphRzhh53N7gjEUfbGZIrtWB9Ci1ubzMxkMYQp-mmA-JFT4W4kaM6TDd_hfuzTOaaOx3SvdT',
  710. 'accept-language' => 'zh-CN,zh;q=0.9',
  711. 'accept-encoding' => 'gzip, deflate, br',
  712. 'referer' => 'https://gaoyx.com/admin.html',
  713. 'sec-fetch-dest' => 'document',
  714. 'sec-fetch-user' => '?1',
  715. 'sec-fetch-mode' => 'navigate',
  716. 'sec-fetch-site' => 'same-origin',
  717. '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',
  718. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  719. 'upgrade-insecure-requests' => '1',
  720. 'sec-ch-ua-platform' => '"Windows"',
  721. 'sec-ch-ua-mobile' => '?0',
  722. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  723. 'cache-control' => 'max-age=0',
  724. 'connection' => 'keep-alive',
  725. 'host' => 'gaoyx.com',
  726. 'content-length' => '',
  727. 'content-type' => '',
  728. )
  729. [ info ] [ PARAM ] array (
  730. )
  731. [ info ] [ DB ] INIT mysql
  732. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  733. 0 => 'app',
  734. 1 => 'request',
  735. 2 => 'csrf_state',
  736. 3 => 'csrf_message',
  737. 4 => 'title',
  738. 5 => 'menus',
  739. ) ]
  740. ---------------------------------------------------------------
  741. [2023-12-22T18:01:19+08:00] 127.0.0.1 GET gaoyx.com/user/message/index.html?spm=m-64-175-301
  742. [运行时间:0.550843s] [吞吐率:1.82req/s] [内存消耗:4,328.02kb] [文件加载:157]
  743. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  744. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  745. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  746. [ info ] [ ROUTE ] array (
  747. )
  748. [ info ] [ HEADER ] array (
  749. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtK0iCu8AeQBbabNhxsy9Q2w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wxqZG5ILQ-XIVIVy3v64riEs_TQG9wViGN95ouUla0CPw13ryLLs2_I0UKCe774ShPpnR7Jj1I-OaVOphRzhh53N7gjEUfbGZIrtWB9Ci1ubzMxkMYQp-mmA-JFT4W4kaM6TDd_hfuzTOaaOx3SvdT',
  750. 'accept-language' => 'zh-CN,zh;q=0.9',
  751. 'accept-encoding' => 'gzip, deflate, br',
  752. 'referer' => 'https://gaoyx.com/admin.html',
  753. 'sec-fetch-dest' => 'empty',
  754. 'sec-fetch-mode' => 'cors',
  755. 'sec-fetch-site' => 'same-origin',
  756. 'sec-ch-ua-platform' => '"Windows"',
  757. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  758. 'sec-ch-ua-mobile' => '?0',
  759. 'x-requested-with' => 'XMLHttpRequest',
  760. 'accept' => '*/*',
  761. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  762. 'connection' => 'keep-alive',
  763. 'host' => 'gaoyx.com',
  764. 'content-length' => '',
  765. 'content-type' => '',
  766. )
  767. [ info ] [ PARAM ] array (
  768. 'spm' => 'm-64-175-301',
  769. )
  770. [ info ] [ DB ] INIT mysql
  771. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\index.html [ array (
  772. 0 => 'page',
  773. 1 => 'list',
  774. 2 => 'table',
  775. 3 => 'app',
  776. 4 => 'request',
  777. 5 => 'csrf_state',
  778. 6 => 'csrf_message',
  779. 7 => 'title',
  780. 8 => 'pagehtml',
  781. ) ]
  782. ---------------------------------------------------------------
  783. [2023-12-22T18:01:28+08:00] 127.0.0.1 GET gaoyx.com/user/message/add.html?spm=m-64-175-301&open_type=modal
  784. [运行时间:5.478510s] [吞吐率:0.18req/s] [内存消耗:5,525.90kb] [文件加载:180]
  785. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  786. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  787. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  788. [ info ] [ ROUTE ] array (
  789. )
  790. [ info ] [ HEADER ] array (
  791. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  792. 'accept-language' => 'zh-CN,zh;q=0.9',
  793. 'accept-encoding' => 'gzip, deflate, br',
  794. 'referer' => 'https://gaoyx.com/admin.html',
  795. 'sec-fetch-dest' => 'empty',
  796. 'sec-fetch-mode' => 'cors',
  797. 'sec-fetch-site' => 'same-origin',
  798. 'sec-ch-ua-platform' => '"Windows"',
  799. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  800. 'sec-ch-ua-mobile' => '?0',
  801. 'x-requested-with' => 'XMLHttpRequest',
  802. 'accept' => '*/*',
  803. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  804. 'connection' => 'keep-alive',
  805. 'host' => 'gaoyx.com',
  806. 'content-length' => '',
  807. 'content-type' => '',
  808. )
  809. [ info ] [ PARAM ] array (
  810. 'spm' => 'm-64-175-301',
  811. 'open_type' => 'modal',
  812. )
  813. [ info ] [ DB ] INIT mysql
  814. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\form.html [ array (
  815. 0 => 'vo',
  816. 1 => 'table',
  817. 2 => 'app',
  818. 3 => 'request',
  819. 4 => 'csrf_state',
  820. 5 => 'csrf_message',
  821. 6 => 'title',
  822. 7 => 'module_arr',
  823. 8 => 'module_list',
  824. ) ]
  825. ---------------------------------------------------------------
  826. [2023-12-22T18:02:31+08:00] 127.0.0.1 GET gaoyx.com/mall/express_company/index.html?spm=m-136-196-200
  827. [运行时间:0.514446s] [吞吐率:1.94req/s] [内存消耗:4,318.62kb] [文件加载:158]
  828. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  829. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  830. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  831. [ info ] [ ROUTE ] array (
  832. )
  833. [ info ] [ HEADER ] array (
  834. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2',
  835. 'accept-language' => 'zh-CN,zh;q=0.9',
  836. 'accept-encoding' => 'gzip, deflate, br',
  837. 'referer' => 'https://gaoyx.com/admin.html',
  838. 'sec-fetch-dest' => 'empty',
  839. 'sec-fetch-mode' => 'cors',
  840. 'sec-fetch-site' => 'same-origin',
  841. 'sec-ch-ua-platform' => '"Windows"',
  842. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  843. 'sec-ch-ua-mobile' => '?0',
  844. 'x-requested-with' => 'XMLHttpRequest',
  845. 'accept' => '*/*',
  846. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  847. 'connection' => 'keep-alive',
  848. 'host' => 'gaoyx.com',
  849. 'content-length' => '',
  850. 'content-type' => '',
  851. )
  852. [ info ] [ PARAM ] array (
  853. 'spm' => 'm-136-196-200',
  854. )
  855. [ info ] [ DB ] INIT mysql
  856. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\express_company\index.html [ array (
  857. 0 => 'page',
  858. 1 => 'list',
  859. 2 => 'table',
  860. 3 => 'app',
  861. 4 => 'request',
  862. 5 => 'csrf_state',
  863. 6 => 'csrf_message',
  864. 7 => 'title',
  865. 8 => 'pagehtml',
  866. ) ]
  867. ---------------------------------------------------------------
  868. [2023-12-22T18:02:33+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/index.html?spm=m-136-283-284
  869. [运行时间:0.425086s] [吞吐率:2.35req/s] [内存消耗:4,241.66kb] [文件加载:155]
  870. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  871. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  872. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  873. [ info ] [ ROUTE ] array (
  874. )
  875. [ info ] [ HEADER ] array (
  876. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  877. 'accept-language' => 'zh-CN,zh;q=0.9',
  878. 'accept-encoding' => 'gzip, deflate, br',
  879. 'referer' => 'https://gaoyx.com/admin.html',
  880. 'sec-fetch-dest' => 'empty',
  881. 'sec-fetch-mode' => 'cors',
  882. 'sec-fetch-site' => 'same-origin',
  883. 'sec-ch-ua-platform' => '"Windows"',
  884. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  885. 'sec-ch-ua-mobile' => '?0',
  886. 'x-requested-with' => 'XMLHttpRequest',
  887. 'accept' => '*/*',
  888. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  889. 'connection' => 'keep-alive',
  890. 'host' => 'gaoyx.com',
  891. 'content-length' => '',
  892. 'content-type' => '',
  893. )
  894. [ info ] [ PARAM ] array (
  895. 'spm' => 'm-136-283-284',
  896. )
  897. [ info ] [ DB ] INIT mysql
  898. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\index.html [ array (
  899. 0 => 'list',
  900. 1 => 'table',
  901. 2 => 'app',
  902. 3 => 'request',
  903. 4 => 'csrf_state',
  904. 5 => 'csrf_message',
  905. 6 => 'title',
  906. ) ]
  907. ---------------------------------------------------------------
  908. [2023-12-22T18:02:35+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/second.html?pid=28&spm=m-136-283-284
  909. [运行时间:0.534390s] [吞吐率:1.87req/s] [内存消耗:4,315.80kb] [文件加载:158]
  910. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  911. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  912. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  913. [ info ] [ ROUTE ] array (
  914. )
  915. [ info ] [ HEADER ] array (
  916. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  917. 'accept-language' => 'zh-CN,zh;q=0.9',
  918. 'accept-encoding' => 'gzip, deflate, br',
  919. 'referer' => 'https://gaoyx.com/admin.html',
  920. 'sec-fetch-dest' => 'empty',
  921. 'sec-fetch-mode' => 'cors',
  922. 'sec-fetch-site' => 'same-origin',
  923. 'sec-ch-ua-platform' => '"Windows"',
  924. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  925. 'sec-ch-ua-mobile' => '?0',
  926. 'x-requested-with' => 'XMLHttpRequest',
  927. 'accept' => '*/*',
  928. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  929. 'connection' => 'keep-alive',
  930. 'host' => 'gaoyx.com',
  931. 'content-length' => '',
  932. 'content-type' => '',
  933. )
  934. [ info ] [ PARAM ] array (
  935. 'pid' => '28',
  936. 'spm' => 'm-136-283-284',
  937. )
  938. [ info ] [ DB ] INIT mysql
  939. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\second.html [ array (
  940. 0 => 'page',
  941. 1 => 'list',
  942. 2 => 'table',
  943. 3 => 'app',
  944. 4 => 'request',
  945. 5 => 'csrf_state',
  946. 6 => 'csrf_message',
  947. 7 => 'title',
  948. 8 => 'pagehtml',
  949. ) ]
  950. ---------------------------------------------------------------
  951. [2023-12-22T18:02:37+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/third.html?pid=29&spm=m-136-283-284
  952. [运行时间:0.528344s] [吞吐率:1.89req/s] [内存消耗:4,316.54kb] [文件加载:158]
  953. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  954. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  955. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  956. [ info ] [ ROUTE ] array (
  957. )
  958. [ info ] [ HEADER ] array (
  959. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  960. 'accept-language' => 'zh-CN,zh;q=0.9',
  961. 'accept-encoding' => 'gzip, deflate, br',
  962. 'referer' => 'https://gaoyx.com/admin.html',
  963. 'sec-fetch-dest' => 'empty',
  964. 'sec-fetch-mode' => 'cors',
  965. 'sec-fetch-site' => 'same-origin',
  966. 'sec-ch-ua-platform' => '"Windows"',
  967. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  968. 'sec-ch-ua-mobile' => '?0',
  969. 'x-requested-with' => 'XMLHttpRequest',
  970. 'accept' => '*/*',
  971. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  972. 'connection' => 'keep-alive',
  973. 'host' => 'gaoyx.com',
  974. 'content-length' => '',
  975. 'content-type' => '',
  976. )
  977. [ info ] [ PARAM ] array (
  978. 'pid' => '29',
  979. 'spm' => 'm-136-283-284',
  980. )
  981. [ info ] [ DB ] INIT mysql
  982. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\third.html [ array (
  983. 0 => 'page',
  984. 1 => 'list',
  985. 2 => 'table',
  986. 3 => 'app',
  987. 4 => 'request',
  988. 5 => 'csrf_state',
  989. 6 => 'csrf_message',
  990. 7 => 'title',
  991. 8 => 'pagehtml',
  992. ) ]
  993. ---------------------------------------------------------------
  994. [2023-12-22T18:02:39+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/second.html?pid=28&spm=m-136-283-284
  995. [运行时间:0.547093s] [吞吐率:1.83req/s] [内存消耗:4,317.34kb] [文件加载:158]
  996. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  997. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  998. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  999. [ info ] [ ROUTE ] array (
  1000. )
  1001. [ info ] [ HEADER ] array (
  1002. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1003. 'accept-language' => 'zh-CN,zh;q=0.9',
  1004. 'accept-encoding' => 'gzip, deflate, br',
  1005. 'referer' => 'https://gaoyx.com/admin.html',
  1006. 'sec-fetch-dest' => 'empty',
  1007. 'sec-fetch-mode' => 'cors',
  1008. 'sec-fetch-site' => 'same-origin',
  1009. 'sec-ch-ua-platform' => '"Windows"',
  1010. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1011. 'sec-ch-ua-mobile' => '?0',
  1012. 'x-requested-with' => 'XMLHttpRequest',
  1013. 'accept' => '*/*',
  1014. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1015. 'connection' => 'keep-alive',
  1016. 'host' => 'gaoyx.com',
  1017. 'content-length' => '',
  1018. 'content-type' => '',
  1019. )
  1020. [ info ] [ PARAM ] array (
  1021. 'pid' => '28',
  1022. 'spm' => 'm-136-283-284',
  1023. )
  1024. [ info ] [ DB ] INIT mysql
  1025. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\second.html [ array (
  1026. 0 => 'page',
  1027. 1 => 'list',
  1028. 2 => 'table',
  1029. 3 => 'app',
  1030. 4 => 'request',
  1031. 5 => 'csrf_state',
  1032. 6 => 'csrf_message',
  1033. 7 => 'title',
  1034. 8 => 'pagehtml',
  1035. ) ]
  1036. ---------------------------------------------------------------
  1037. [2023-12-22T18:02:40+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/index.html?spm=m-136-283-284
  1038. [运行时间:0.432731s] [吞吐率:2.31req/s] [内存消耗:4,244.20kb] [文件加载:155]
  1039. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1040. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1041. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1042. [ info ] [ ROUTE ] array (
  1043. )
  1044. [ info ] [ HEADER ] array (
  1045. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1046. 'accept-language' => 'zh-CN,zh;q=0.9',
  1047. 'accept-encoding' => 'gzip, deflate, br',
  1048. 'referer' => 'https://gaoyx.com/admin.html',
  1049. 'sec-fetch-dest' => 'empty',
  1050. 'sec-fetch-mode' => 'cors',
  1051. 'sec-fetch-site' => 'same-origin',
  1052. 'sec-ch-ua-platform' => '"Windows"',
  1053. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1054. 'sec-ch-ua-mobile' => '?0',
  1055. 'x-requested-with' => 'XMLHttpRequest',
  1056. 'accept' => '*/*',
  1057. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1058. 'connection' => 'keep-alive',
  1059. 'host' => 'gaoyx.com',
  1060. 'content-length' => '',
  1061. 'content-type' => '',
  1062. )
  1063. [ info ] [ PARAM ] array (
  1064. 'spm' => 'm-136-283-284',
  1065. )
  1066. [ info ] [ DB ] INIT mysql
  1067. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\index.html [ array (
  1068. 0 => 'list',
  1069. 1 => 'table',
  1070. 2 => 'app',
  1071. 3 => 'request',
  1072. 4 => 'csrf_state',
  1073. 5 => 'csrf_message',
  1074. 6 => 'title',
  1075. ) ]
  1076. ---------------------------------------------------------------
  1077. [2023-12-22T18:02:42+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/second.html?pid=26&spm=m-136-283-284
  1078. [运行时间:0.540032s] [吞吐率:1.85req/s] [内存消耗:4,318.82kb] [文件加载:158]
  1079. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1080. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1081. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1082. [ info ] [ ROUTE ] array (
  1083. )
  1084. [ info ] [ HEADER ] array (
  1085. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1086. 'accept-language' => 'zh-CN,zh;q=0.9',
  1087. 'accept-encoding' => 'gzip, deflate, br',
  1088. 'referer' => 'https://gaoyx.com/admin.html',
  1089. 'sec-fetch-dest' => 'empty',
  1090. 'sec-fetch-mode' => 'cors',
  1091. 'sec-fetch-site' => 'same-origin',
  1092. 'sec-ch-ua-platform' => '"Windows"',
  1093. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1094. 'sec-ch-ua-mobile' => '?0',
  1095. 'x-requested-with' => 'XMLHttpRequest',
  1096. 'accept' => '*/*',
  1097. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1098. 'connection' => 'keep-alive',
  1099. 'host' => 'gaoyx.com',
  1100. 'content-length' => '',
  1101. 'content-type' => '',
  1102. )
  1103. [ info ] [ PARAM ] array (
  1104. 'pid' => '26',
  1105. 'spm' => 'm-136-283-284',
  1106. )
  1107. [ info ] [ DB ] INIT mysql
  1108. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\second.html [ array (
  1109. 0 => 'page',
  1110. 1 => 'list',
  1111. 2 => 'table',
  1112. 3 => 'app',
  1113. 4 => 'request',
  1114. 5 => 'csrf_state',
  1115. 6 => 'csrf_message',
  1116. 7 => 'title',
  1117. 8 => 'pagehtml',
  1118. ) ]
  1119. ---------------------------------------------------------------
  1120. [2023-12-22T18:02:43+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/third.html?pid=27&spm=m-136-283-284
  1121. [运行时间:0.556521s] [吞吐率:1.80req/s] [内存消耗:4,319.70kb] [文件加载:158]
  1122. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1123. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1124. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1125. [ info ] [ ROUTE ] array (
  1126. )
  1127. [ info ] [ HEADER ] array (
  1128. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1129. 'accept-language' => 'zh-CN,zh;q=0.9',
  1130. 'accept-encoding' => 'gzip, deflate, br',
  1131. 'referer' => 'https://gaoyx.com/admin.html',
  1132. 'sec-fetch-dest' => 'empty',
  1133. 'sec-fetch-mode' => 'cors',
  1134. 'sec-fetch-site' => 'same-origin',
  1135. 'sec-ch-ua-platform' => '"Windows"',
  1136. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1137. 'sec-ch-ua-mobile' => '?0',
  1138. 'x-requested-with' => 'XMLHttpRequest',
  1139. 'accept' => '*/*',
  1140. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1141. 'connection' => 'keep-alive',
  1142. 'host' => 'gaoyx.com',
  1143. 'content-length' => '',
  1144. 'content-type' => '',
  1145. )
  1146. [ info ] [ PARAM ] array (
  1147. 'pid' => '27',
  1148. 'spm' => 'm-136-283-284',
  1149. )
  1150. [ info ] [ DB ] INIT mysql
  1151. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\third.html [ array (
  1152. 0 => 'page',
  1153. 1 => 'list',
  1154. 2 => 'table',
  1155. 3 => 'app',
  1156. 4 => 'request',
  1157. 5 => 'csrf_state',
  1158. 6 => 'csrf_message',
  1159. 7 => 'title',
  1160. 8 => 'pagehtml',
  1161. ) ]
  1162. ---------------------------------------------------------------
  1163. [2023-12-22T18:04:13+08:00] 127.0.0.1 GET gaoyx.com/mall/store_goods/index.html?spm=m-136-283-285
  1164. [运行时间:1.203998s] [吞吐率:0.83req/s] [内存消耗:5,142.73kb] [文件加载:166]
  1165. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1166. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1167. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1168. [ info ] [ ROUTE ] array (
  1169. )
  1170. [ info ] [ HEADER ] array (
  1171. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2',
  1172. 'accept-language' => 'zh-CN,zh;q=0.9',
  1173. 'accept-encoding' => 'gzip, deflate, br',
  1174. 'referer' => 'https://gaoyx.com/admin.html',
  1175. 'sec-fetch-dest' => 'empty',
  1176. 'sec-fetch-mode' => 'cors',
  1177. 'sec-fetch-site' => 'same-origin',
  1178. 'sec-ch-ua-platform' => '"Windows"',
  1179. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1180. 'sec-ch-ua-mobile' => '?0',
  1181. 'x-requested-with' => 'XMLHttpRequest',
  1182. 'accept' => '*/*',
  1183. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1184. 'connection' => 'keep-alive',
  1185. 'host' => 'gaoyx.com',
  1186. 'content-length' => '',
  1187. 'content-type' => '',
  1188. )
  1189. [ info ] [ PARAM ] array (
  1190. 'spm' => 'm-136-283-285',
  1191. )
  1192. [ info ] [ DB ] INIT mysql
  1193. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\store_goods\index.html [ array (
  1194. 0 => 'page',
  1195. 1 => 'list',
  1196. 2 => 'table',
  1197. 3 => 'app',
  1198. 4 => 'request',
  1199. 5 => 'csrf_state',
  1200. 6 => 'csrf_message',
  1201. 7 => 'title',
  1202. 8 => 'pagehtml',
  1203. 9 => 'clist',
  1204. ) ]
  1205. ---------------------------------------------------------------
  1206. [2023-12-22T18:04:14+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/index.html?spm=m-136-283-284
  1207. [运行时间:0.415678s] [吞吐率:2.41req/s] [内存消耗:4,247.37kb] [文件加载:155]
  1208. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1209. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1210. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1211. [ info ] [ ROUTE ] array (
  1212. )
  1213. [ info ] [ HEADER ] array (
  1214. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1215. 'accept-language' => 'zh-CN,zh;q=0.9',
  1216. 'accept-encoding' => 'gzip, deflate, br',
  1217. 'referer' => 'https://gaoyx.com/admin.html',
  1218. 'sec-fetch-dest' => 'empty',
  1219. 'sec-fetch-mode' => 'cors',
  1220. 'sec-fetch-site' => 'same-origin',
  1221. 'sec-ch-ua-platform' => '"Windows"',
  1222. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1223. 'sec-ch-ua-mobile' => '?0',
  1224. 'x-requested-with' => 'XMLHttpRequest',
  1225. 'accept' => '*/*',
  1226. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1227. 'connection' => 'keep-alive',
  1228. 'host' => 'gaoyx.com',
  1229. 'content-length' => '',
  1230. 'content-type' => '',
  1231. )
  1232. [ info ] [ PARAM ] array (
  1233. 'spm' => 'm-136-283-284',
  1234. )
  1235. [ info ] [ DB ] INIT mysql
  1236. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\index.html [ array (
  1237. 0 => 'list',
  1238. 1 => 'table',
  1239. 2 => 'app',
  1240. 3 => 'request',
  1241. 4 => 'csrf_state',
  1242. 5 => 'csrf_message',
  1243. 6 => 'title',
  1244. ) ]
  1245. ---------------------------------------------------------------
  1246. [2023-12-22T18:04:16+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/second.html?pid=28&spm=m-136-283-284
  1247. [运行时间:0.544107s] [吞吐率:1.84req/s] [内存消耗:4,321.49kb] [文件加载:158]
  1248. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1249. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1250. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1251. [ info ] [ ROUTE ] array (
  1252. )
  1253. [ info ] [ HEADER ] array (
  1254. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1255. 'accept-language' => 'zh-CN,zh;q=0.9',
  1256. 'accept-encoding' => 'gzip, deflate, br',
  1257. 'referer' => 'https://gaoyx.com/admin.html',
  1258. 'sec-fetch-dest' => 'empty',
  1259. 'sec-fetch-mode' => 'cors',
  1260. 'sec-fetch-site' => 'same-origin',
  1261. 'sec-ch-ua-platform' => '"Windows"',
  1262. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1263. 'sec-ch-ua-mobile' => '?0',
  1264. 'x-requested-with' => 'XMLHttpRequest',
  1265. 'accept' => '*/*',
  1266. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1267. 'connection' => 'keep-alive',
  1268. 'host' => 'gaoyx.com',
  1269. 'content-length' => '',
  1270. 'content-type' => '',
  1271. )
  1272. [ info ] [ PARAM ] array (
  1273. 'pid' => '28',
  1274. 'spm' => 'm-136-283-284',
  1275. )
  1276. [ info ] [ DB ] INIT mysql
  1277. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\second.html [ array (
  1278. 0 => 'page',
  1279. 1 => 'list',
  1280. 2 => 'table',
  1281. 3 => 'app',
  1282. 4 => 'request',
  1283. 5 => 'csrf_state',
  1284. 6 => 'csrf_message',
  1285. 7 => 'title',
  1286. 8 => 'pagehtml',
  1287. ) ]
  1288. ---------------------------------------------------------------
  1289. [2023-12-22T18:04:17+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/third.html?pid=29&spm=m-136-283-284
  1290. [运行时间:0.549698s] [吞吐率:1.82req/s] [内存消耗:4,322.73kb] [文件加载:158]
  1291. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1292. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1293. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1294. [ info ] [ ROUTE ] array (
  1295. )
  1296. [ info ] [ HEADER ] array (
  1297. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1298. 'accept-language' => 'zh-CN,zh;q=0.9',
  1299. 'accept-encoding' => 'gzip, deflate, br',
  1300. 'referer' => 'https://gaoyx.com/admin.html',
  1301. 'sec-fetch-dest' => 'empty',
  1302. 'sec-fetch-mode' => 'cors',
  1303. 'sec-fetch-site' => 'same-origin',
  1304. 'sec-ch-ua-platform' => '"Windows"',
  1305. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1306. 'sec-ch-ua-mobile' => '?0',
  1307. 'x-requested-with' => 'XMLHttpRequest',
  1308. 'accept' => '*/*',
  1309. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1310. 'connection' => 'keep-alive',
  1311. 'host' => 'gaoyx.com',
  1312. 'content-length' => '',
  1313. 'content-type' => '',
  1314. )
  1315. [ info ] [ PARAM ] array (
  1316. 'pid' => '29',
  1317. 'spm' => 'm-136-283-284',
  1318. )
  1319. [ info ] [ DB ] INIT mysql
  1320. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\third.html [ array (
  1321. 0 => 'page',
  1322. 1 => 'list',
  1323. 2 => 'table',
  1324. 3 => 'app',
  1325. 4 => 'request',
  1326. 5 => 'csrf_state',
  1327. 6 => 'csrf_message',
  1328. 7 => 'title',
  1329. 8 => 'pagehtml',
  1330. ) ]
  1331. ---------------------------------------------------------------
  1332. [2023-12-22T18:04:19+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/add.html?pid=29&lev=3&spm=m-136-283-284&open_type=modal
  1333. [运行时间:0.298322s] [吞吐率:3.35req/s] [内存消耗:4,137.55kb] [文件加载:152]
  1334. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1335. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1336. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1337. [ info ] [ ROUTE ] array (
  1338. )
  1339. [ info ] [ HEADER ] array (
  1340. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1341. 'accept-language' => 'zh-CN,zh;q=0.9',
  1342. 'accept-encoding' => 'gzip, deflate, br',
  1343. 'referer' => 'https://gaoyx.com/admin.html',
  1344. 'sec-fetch-dest' => 'empty',
  1345. 'sec-fetch-mode' => 'cors',
  1346. 'sec-fetch-site' => 'same-origin',
  1347. 'sec-ch-ua-platform' => '"Windows"',
  1348. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1349. 'sec-ch-ua-mobile' => '?0',
  1350. 'x-requested-with' => 'XMLHttpRequest',
  1351. 'accept' => '*/*',
  1352. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1353. 'connection' => 'keep-alive',
  1354. 'host' => 'gaoyx.com',
  1355. 'content-length' => '',
  1356. 'content-type' => '',
  1357. )
  1358. [ info ] [ PARAM ] array (
  1359. 'pid' => '29',
  1360. 'lev' => '3',
  1361. 'spm' => 'm-136-283-284',
  1362. 'open_type' => 'modal',
  1363. )
  1364. [ info ] [ DB ] INIT mysql
  1365. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\form.html [ array (
  1366. 0 => 'vo',
  1367. 1 => 'table',
  1368. 2 => 'app',
  1369. 3 => 'request',
  1370. 4 => 'csrf_state',
  1371. 5 => 'csrf_message',
  1372. ) ]
  1373. ---------------------------------------------------------------
  1374. [2023-12-22T18:04:21+08:00] 127.0.0.1 POST gaoyx.com/admin.html?s=admin/api.plugs/check&spm=m-136-283-284
  1375. [运行时间:1.400594s] [吞吐率:0.71req/s] [内存消耗:5,313.98kb] [文件加载:151]
  1376. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1377. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1378. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1379. [ info ] [ ROUTE ] array (
  1380. )
  1381. [ info ] [ HEADER ] array (
  1382. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1383. 'accept-language' => 'zh-CN,zh;q=0.9',
  1384. 'accept-encoding' => 'gzip, deflate, br',
  1385. 'referer' => 'https://gaoyx.com/admin.html',
  1386. 'sec-fetch-dest' => 'empty',
  1387. 'sec-fetch-mode' => 'cors',
  1388. 'sec-fetch-site' => 'same-origin',
  1389. 'origin' => 'https://gaoyx.com',
  1390. 'sec-ch-ua-platform' => '"Windows"',
  1391. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1392. 'sec-ch-ua-mobile' => '?0',
  1393. 'x-requested-with' => 'XMLHttpRequest',
  1394. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  1395. 'accept' => '*/*',
  1396. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1397. 'content-length' => '28',
  1398. 'connection' => 'keep-alive',
  1399. 'host' => 'gaoyx.com',
  1400. )
  1401. [ info ] [ PARAM ] array (
  1402. 'spm' => 'm-136-283-284',
  1403. 'exts' => 'png,jpg,gif',
  1404. 'uptype' => '',
  1405. )
  1406. [ info ] [ DB ] INIT mysql
  1407. ---------------------------------------------------------------
  1408. [2023-12-22T18:04:28+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/index.html?spm=m-136-283-284
  1409. [运行时间:0.429013s] [吞吐率:2.33req/s] [内存消耗:4,249.91kb] [文件加载:155]
  1410. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1411. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1412. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1413. [ info ] [ ROUTE ] array (
  1414. )
  1415. [ info ] [ HEADER ] array (
  1416. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1417. 'accept-language' => 'zh-CN,zh;q=0.9',
  1418. 'accept-encoding' => 'gzip, deflate, br',
  1419. 'referer' => 'https://gaoyx.com/admin.html',
  1420. 'sec-fetch-dest' => 'empty',
  1421. 'sec-fetch-mode' => 'cors',
  1422. 'sec-fetch-site' => 'same-origin',
  1423. 'sec-ch-ua-platform' => '"Windows"',
  1424. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1425. 'sec-ch-ua-mobile' => '?0',
  1426. 'x-requested-with' => 'XMLHttpRequest',
  1427. 'accept' => '*/*',
  1428. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1429. 'connection' => 'keep-alive',
  1430. 'host' => 'gaoyx.com',
  1431. 'content-length' => '',
  1432. 'content-type' => '',
  1433. )
  1434. [ info ] [ PARAM ] array (
  1435. 'spm' => 'm-136-283-284',
  1436. )
  1437. [ info ] [ DB ] INIT mysql
  1438. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\index.html [ array (
  1439. 0 => 'list',
  1440. 1 => 'table',
  1441. 2 => 'app',
  1442. 3 => 'request',
  1443. 4 => 'csrf_state',
  1444. 5 => 'csrf_message',
  1445. 6 => 'title',
  1446. ) ]
  1447. ---------------------------------------------------------------
  1448. [2023-12-22T18:04:30+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/second.html?pid=26&spm=m-136-283-284
  1449. [运行时间:0.534993s] [吞吐率:1.87req/s] [内存消耗:4,323.86kb] [文件加载:158]
  1450. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1451. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1452. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1453. [ info ] [ ROUTE ] array (
  1454. )
  1455. [ info ] [ HEADER ] array (
  1456. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1457. 'accept-language' => 'zh-CN,zh;q=0.9',
  1458. 'accept-encoding' => 'gzip, deflate, br',
  1459. 'referer' => 'https://gaoyx.com/admin.html',
  1460. 'sec-fetch-dest' => 'empty',
  1461. 'sec-fetch-mode' => 'cors',
  1462. 'sec-fetch-site' => 'same-origin',
  1463. 'sec-ch-ua-platform' => '"Windows"',
  1464. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1465. 'sec-ch-ua-mobile' => '?0',
  1466. 'x-requested-with' => 'XMLHttpRequest',
  1467. 'accept' => '*/*',
  1468. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1469. 'connection' => 'keep-alive',
  1470. 'host' => 'gaoyx.com',
  1471. 'content-length' => '',
  1472. 'content-type' => '',
  1473. )
  1474. [ info ] [ PARAM ] array (
  1475. 'pid' => '26',
  1476. 'spm' => 'm-136-283-284',
  1477. )
  1478. [ info ] [ DB ] INIT mysql
  1479. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\second.html [ array (
  1480. 0 => 'page',
  1481. 1 => 'list',
  1482. 2 => 'table',
  1483. 3 => 'app',
  1484. 4 => 'request',
  1485. 5 => 'csrf_state',
  1486. 6 => 'csrf_message',
  1487. 7 => 'title',
  1488. 8 => 'pagehtml',
  1489. ) ]
  1490. ---------------------------------------------------------------
  1491. [2023-12-22T18:04:31+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/third.html?pid=27&spm=m-136-283-284
  1492. [运行时间:0.540870s] [吞吐率:1.85req/s] [内存消耗:4,324.26kb] [文件加载:158]
  1493. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1494. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1495. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1496. [ info ] [ ROUTE ] array (
  1497. )
  1498. [ info ] [ HEADER ] array (
  1499. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1500. 'accept-language' => 'zh-CN,zh;q=0.9',
  1501. 'accept-encoding' => 'gzip, deflate, br',
  1502. 'referer' => 'https://gaoyx.com/admin.html',
  1503. 'sec-fetch-dest' => 'empty',
  1504. 'sec-fetch-mode' => 'cors',
  1505. 'sec-fetch-site' => 'same-origin',
  1506. 'sec-ch-ua-platform' => '"Windows"',
  1507. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1508. 'sec-ch-ua-mobile' => '?0',
  1509. 'x-requested-with' => 'XMLHttpRequest',
  1510. 'accept' => '*/*',
  1511. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1512. 'connection' => 'keep-alive',
  1513. 'host' => 'gaoyx.com',
  1514. 'content-length' => '',
  1515. 'content-type' => '',
  1516. )
  1517. [ info ] [ PARAM ] array (
  1518. 'pid' => '27',
  1519. 'spm' => 'm-136-283-284',
  1520. )
  1521. [ info ] [ DB ] INIT mysql
  1522. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\third.html [ array (
  1523. 0 => 'page',
  1524. 1 => 'list',
  1525. 2 => 'table',
  1526. 3 => 'app',
  1527. 4 => 'request',
  1528. 5 => 'csrf_state',
  1529. 6 => 'csrf_message',
  1530. 7 => 'title',
  1531. 8 => 'pagehtml',
  1532. ) ]
  1533. ---------------------------------------------------------------
  1534. [2023-12-22T18:04:34+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/add.html?pid=27&lev=3&spm=m-136-283-284&open_type=modal
  1535. [运行时间:0.298561s] [吞吐率:3.35req/s] [内存消耗:4,139.08kb] [文件加载:152]
  1536. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1537. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1538. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1539. [ info ] [ ROUTE ] array (
  1540. )
  1541. [ info ] [ HEADER ] array (
  1542. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1543. 'accept-language' => 'zh-CN,zh;q=0.9',
  1544. 'accept-encoding' => 'gzip, deflate, br',
  1545. 'referer' => 'https://gaoyx.com/admin.html',
  1546. 'sec-fetch-dest' => 'empty',
  1547. 'sec-fetch-mode' => 'cors',
  1548. 'sec-fetch-site' => 'same-origin',
  1549. 'sec-ch-ua-platform' => '"Windows"',
  1550. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1551. 'sec-ch-ua-mobile' => '?0',
  1552. 'x-requested-with' => 'XMLHttpRequest',
  1553. 'accept' => '*/*',
  1554. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1555. 'connection' => 'keep-alive',
  1556. 'host' => 'gaoyx.com',
  1557. 'content-length' => '',
  1558. 'content-type' => '',
  1559. )
  1560. [ info ] [ PARAM ] array (
  1561. 'pid' => '27',
  1562. 'lev' => '3',
  1563. 'spm' => 'm-136-283-284',
  1564. 'open_type' => 'modal',
  1565. )
  1566. [ info ] [ DB ] INIT mysql
  1567. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\form.html [ array (
  1568. 0 => 'vo',
  1569. 1 => 'table',
  1570. 2 => 'app',
  1571. 3 => 'request',
  1572. 4 => 'csrf_state',
  1573. 5 => 'csrf_message',
  1574. ) ]
  1575. ---------------------------------------------------------------
  1576. [2023-12-22T18:04:35+08:00] 127.0.0.1 POST gaoyx.com/admin.html?s=admin/api.plugs/check&spm=m-136-283-284
  1577. [运行时间:0.054845s] [吞吐率:18.23req/s] [内存消耗:3,601.59kb] [文件加载:146]
  1578. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1579. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1580. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1581. [ info ] [ ROUTE ] array (
  1582. )
  1583. [ info ] [ HEADER ] array (
  1584. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1585. 'accept-language' => 'zh-CN,zh;q=0.9',
  1586. 'accept-encoding' => 'gzip, deflate, br',
  1587. 'referer' => 'https://gaoyx.com/admin.html',
  1588. 'sec-fetch-dest' => 'empty',
  1589. 'sec-fetch-mode' => 'cors',
  1590. 'sec-fetch-site' => 'same-origin',
  1591. 'origin' => 'https://gaoyx.com',
  1592. 'sec-ch-ua-platform' => '"Windows"',
  1593. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1594. 'sec-ch-ua-mobile' => '?0',
  1595. 'x-requested-with' => 'XMLHttpRequest',
  1596. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  1597. 'accept' => '*/*',
  1598. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1599. 'content-length' => '28',
  1600. 'connection' => 'keep-alive',
  1601. 'host' => 'gaoyx.com',
  1602. )
  1603. [ info ] [ PARAM ] array (
  1604. 'spm' => 'm-136-283-284',
  1605. 'exts' => 'png,jpg,gif',
  1606. 'uptype' => '',
  1607. )
  1608. ---------------------------------------------------------------
  1609. [2023-12-22T18:04:48+08:00] 127.0.0.1 POST gaoyx.com/admin.html?s=admin/api.plugs/upload
  1610. [运行时间:0.255317s] [吞吐率:3.92req/s] [内存消耗:4,229.07kb] [文件加载:153]
  1611. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1612. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1613. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1614. [ info ] [ ROUTE ] array (
  1615. )
  1616. [ info ] [ HEADER ] array (
  1617. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1618. 'accept-language' => 'zh-CN,zh;q=0.9',
  1619. 'accept-encoding' => 'gzip, deflate, br',
  1620. 'referer' => 'https://gaoyx.com/admin.html',
  1621. 'sec-fetch-dest' => 'empty',
  1622. 'sec-fetch-mode' => 'cors',
  1623. 'sec-fetch-site' => 'same-origin',
  1624. 'origin' => 'https://gaoyx.com',
  1625. 'sec-ch-ua-platform' => '"Windows"',
  1626. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1627. 'sec-ch-ua-mobile' => '?0',
  1628. 'x-requested-with' => 'XMLHttpRequest',
  1629. 'content-type' => 'multipart/form-data; boundary=----WebKitFormBoundaryLrKDNtVBOO8F191O',
  1630. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1631. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1632. 'content-length' => '2166',
  1633. 'connection' => 'keep-alive',
  1634. 'host' => 'gaoyx.com',
  1635. )
  1636. [ info ] [ PARAM ] array (
  1637. 'url' => '?s=admin/api.plugs/upload',
  1638. 'token' => 'local_upload_65855f3300555',
  1639. 'uptype' => 'oss',
  1640. )
  1641. ---------------------------------------------------------------
  1642. [2023-12-22T18:04:49+08:00] 127.0.0.1 POST gaoyx.com/mall/goods_cate/add.html?pid=27&lev=3&spm=m-136-283-284&open_type=modal
  1643. [运行时间:0.515189s] [吞吐率:1.94req/s] [内存消耗:4,004.35kb] [文件加载:150]
  1644. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1645. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1646. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1647. [ info ] [ ROUTE ] array (
  1648. )
  1649. [ info ] [ HEADER ] array (
  1650. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1651. 'accept-language' => 'zh-CN,zh;q=0.9',
  1652. 'accept-encoding' => 'gzip, deflate, br',
  1653. 'referer' => 'https://gaoyx.com/admin.html',
  1654. 'sec-fetch-dest' => 'empty',
  1655. 'sec-fetch-mode' => 'cors',
  1656. 'sec-fetch-site' => 'same-origin',
  1657. 'origin' => 'https://gaoyx.com',
  1658. 'sec-ch-ua-platform' => '"Windows"',
  1659. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1660. 'sec-ch-ua-mobile' => '?0',
  1661. 'x-requested-with' => 'XMLHttpRequest',
  1662. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  1663. 'accept' => '*/*',
  1664. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1665. 'content-length' => '167',
  1666. 'connection' => 'keep-alive',
  1667. 'host' => 'gaoyx.com',
  1668. )
  1669. [ info ] [ PARAM ] array (
  1670. 'pid' => '27',
  1671. 'lev' => '3',
  1672. 'spm' => 'm-136-283-284',
  1673. 'open_type' => 'modal',
  1674. 'title' => '非日用品',
  1675. 'logo' => 'https://gaoyixia.oss-cn-hangzhou.aliyuncs.com/2023-12-22/dd396d31ed34e7bf/569e6f0e77bd2e88.jpg',
  1676. )
  1677. [ info ] [ DB ] INIT mysql
  1678. ---------------------------------------------------------------
  1679. [2023-12-22T18:04:52+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/third.html?pid=27&spm=m-136-283-284
  1680. [运行时间:0.555221s] [吞吐率:1.80req/s] [内存消耗:4,325.88kb] [文件加载:158]
  1681. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1682. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1683. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1684. [ info ] [ ROUTE ] array (
  1685. )
  1686. [ info ] [ HEADER ] array (
  1687. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2',
  1688. 'accept-language' => 'zh-CN,zh;q=0.9',
  1689. 'accept-encoding' => 'gzip, deflate, br',
  1690. 'referer' => 'https://gaoyx.com/admin.html',
  1691. 'sec-fetch-dest' => 'empty',
  1692. 'sec-fetch-mode' => 'cors',
  1693. 'sec-fetch-site' => 'same-origin',
  1694. 'sec-ch-ua-platform' => '"Windows"',
  1695. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1696. 'sec-ch-ua-mobile' => '?0',
  1697. 'x-requested-with' => 'XMLHttpRequest',
  1698. 'accept' => '*/*',
  1699. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1700. 'connection' => 'keep-alive',
  1701. 'host' => 'gaoyx.com',
  1702. 'content-length' => '',
  1703. 'content-type' => '',
  1704. )
  1705. [ info ] [ PARAM ] array (
  1706. 'pid' => '27',
  1707. 'spm' => 'm-136-283-284',
  1708. )
  1709. [ info ] [ DB ] INIT mysql
  1710. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\third.html [ array (
  1711. 0 => 'page',
  1712. 1 => 'list',
  1713. 2 => 'table',
  1714. 3 => 'app',
  1715. 4 => 'request',
  1716. 5 => 'csrf_state',
  1717. 6 => 'csrf_message',
  1718. 7 => 'title',
  1719. 8 => 'pagehtml',
  1720. ) ]
  1721. ---------------------------------------------------------------
  1722. [2023-12-22T18:05:16+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  1723. [运行时间:0.540941s] [吞吐率:1.85req/s] [内存消耗:4,306.91kb] [文件加载:158]
  1724. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1725. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1726. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1727. [ info ] [ ROUTE ] array (
  1728. )
  1729. [ info ] [ HEADER ] array (
  1730. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2',
  1731. 'accept-language' => 'zh-CN,zh;q=0.9',
  1732. 'accept-encoding' => 'gzip, deflate, br',
  1733. 'referer' => 'https://gaoyx.com/admin.html',
  1734. 'sec-fetch-dest' => 'empty',
  1735. 'sec-fetch-mode' => 'cors',
  1736. 'sec-fetch-site' => 'same-origin',
  1737. 'sec-ch-ua-platform' => '"Windows"',
  1738. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1739. 'sec-ch-ua-mobile' => '?0',
  1740. 'x-requested-with' => 'XMLHttpRequest',
  1741. 'accept' => '*/*',
  1742. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1743. 'connection' => 'keep-alive',
  1744. 'host' => 'gaoyx.com',
  1745. 'content-length' => '',
  1746. 'content-type' => '',
  1747. )
  1748. [ info ] [ PARAM ] array (
  1749. 'spm' => 'm-64-175-254',
  1750. )
  1751. [ info ] [ DB ] INIT mysql
  1752. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  1753. 0 => 'page',
  1754. 1 => 'list',
  1755. 2 => 'table',
  1756. 3 => 'app',
  1757. 4 => 'request',
  1758. 5 => 'csrf_state',
  1759. 6 => 'csrf_message',
  1760. 7 => 'title',
  1761. 8 => 'pagehtml',
  1762. ) ]
  1763. ---------------------------------------------------------------
  1764. [2023-12-22T18:05:17+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  1765. [运行时间:0.545567s] [吞吐率:1.83req/s] [内存消耗:4,328.66kb] [文件加载:158]
  1766. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1767. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1768. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1769. [ info ] [ ROUTE ] array (
  1770. )
  1771. [ info ] [ HEADER ] array (
  1772. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1773. 'accept-language' => 'zh-CN,zh;q=0.9',
  1774. 'accept-encoding' => 'gzip, deflate, br',
  1775. 'referer' => 'https://gaoyx.com/admin.html',
  1776. 'sec-fetch-dest' => 'empty',
  1777. 'sec-fetch-mode' => 'cors',
  1778. 'sec-fetch-site' => 'same-origin',
  1779. 'sec-ch-ua-platform' => '"Windows"',
  1780. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1781. 'sec-ch-ua-mobile' => '?0',
  1782. 'x-requested-with' => 'XMLHttpRequest',
  1783. 'accept' => '*/*',
  1784. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1785. 'connection' => 'keep-alive',
  1786. 'host' => 'gaoyx.com',
  1787. 'content-length' => '',
  1788. 'content-type' => '',
  1789. )
  1790. [ info ] [ PARAM ] array (
  1791. 'spm' => 'm-277-280-197',
  1792. )
  1793. [ info ] [ DB ] INIT mysql
  1794. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  1795. 0 => 'page',
  1796. 1 => 'list',
  1797. 2 => 'table',
  1798. 3 => 'app',
  1799. 4 => 'request',
  1800. 5 => 'csrf_state',
  1801. 6 => 'csrf_message',
  1802. 7 => 'title',
  1803. 8 => 'place_desc',
  1804. 9 => 'pagehtml',
  1805. ) ]
  1806. ---------------------------------------------------------------
  1807. [2023-12-22T18:05:19+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  1808. [运行时间:0.543549s] [吞吐率:1.84req/s] [内存消耗:4,307.88kb] [文件加载:158]
  1809. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1810. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1811. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1812. [ info ] [ ROUTE ] array (
  1813. )
  1814. [ info ] [ HEADER ] array (
  1815. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1816. 'accept-language' => 'zh-CN,zh;q=0.9',
  1817. 'accept-encoding' => 'gzip, deflate, br',
  1818. 'referer' => 'https://gaoyx.com/admin.html',
  1819. 'sec-fetch-dest' => 'empty',
  1820. 'sec-fetch-mode' => 'cors',
  1821. 'sec-fetch-site' => 'same-origin',
  1822. 'sec-ch-ua-platform' => '"Windows"',
  1823. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1824. 'sec-ch-ua-mobile' => '?0',
  1825. 'x-requested-with' => 'XMLHttpRequest',
  1826. 'accept' => '*/*',
  1827. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1828. 'connection' => 'keep-alive',
  1829. 'host' => 'gaoyx.com',
  1830. 'content-length' => '',
  1831. 'content-type' => '',
  1832. )
  1833. [ info ] [ PARAM ] array (
  1834. 'spm' => 'm-64-175-254',
  1835. )
  1836. [ info ] [ DB ] INIT mysql
  1837. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  1838. 0 => 'page',
  1839. 1 => 'list',
  1840. 2 => 'table',
  1841. 3 => 'app',
  1842. 4 => 'request',
  1843. 5 => 'csrf_state',
  1844. 6 => 'csrf_message',
  1845. 7 => 'title',
  1846. 8 => 'pagehtml',
  1847. ) ]
  1848. ---------------------------------------------------------------
  1849. [2023-12-22T18:05:20+08:00] 127.0.0.1 GET gaoyx.com/user/message/index.html?spm=m-64-175-301
  1850. [运行时间:0.536021s] [吞吐率:1.87req/s] [内存消耗:4,344.47kb] [文件加载:157]
  1851. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1852. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1853. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1854. [ info ] [ ROUTE ] array (
  1855. )
  1856. [ info ] [ HEADER ] array (
  1857. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1858. 'accept-language' => 'zh-CN,zh;q=0.9',
  1859. 'accept-encoding' => 'gzip, deflate, br',
  1860. 'referer' => 'https://gaoyx.com/admin.html',
  1861. 'sec-fetch-dest' => 'empty',
  1862. 'sec-fetch-mode' => 'cors',
  1863. 'sec-fetch-site' => 'same-origin',
  1864. 'sec-ch-ua-platform' => '"Windows"',
  1865. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1866. 'sec-ch-ua-mobile' => '?0',
  1867. 'x-requested-with' => 'XMLHttpRequest',
  1868. 'accept' => '*/*',
  1869. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1870. 'connection' => 'keep-alive',
  1871. 'host' => 'gaoyx.com',
  1872. 'content-length' => '',
  1873. 'content-type' => '',
  1874. )
  1875. [ info ] [ PARAM ] array (
  1876. 'spm' => 'm-64-175-301',
  1877. )
  1878. [ info ] [ DB ] INIT mysql
  1879. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\index.html [ array (
  1880. 0 => 'page',
  1881. 1 => 'list',
  1882. 2 => 'table',
  1883. 3 => 'app',
  1884. 4 => 'request',
  1885. 5 => 'csrf_state',
  1886. 6 => 'csrf_message',
  1887. 7 => 'title',
  1888. 8 => 'pagehtml',
  1889. ) ]
  1890. ---------------------------------------------------------------
  1891. [2023-12-22T18:05:26+08:00] 127.0.0.1 GET gaoyx.com/user/message/add.html?spm=m-64-175-301&open_type=modal
  1892. [运行时间:5.538596s] [吞吐率:0.18req/s] [内存消耗:5,548.92kb] [文件加载:180]
  1893. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1894. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1895. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1896. [ info ] [ ROUTE ] array (
  1897. )
  1898. [ info ] [ HEADER ] array (
  1899. 'cookie' => 'PHPSESSID=3nqvamp4rtbbkiuc73p2p7bcb8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; page-limit=20',
  1900. 'accept-language' => 'zh-CN,zh;q=0.9',
  1901. 'accept-encoding' => 'gzip, deflate, br',
  1902. 'referer' => 'https://gaoyx.com/admin.html',
  1903. 'sec-fetch-dest' => 'empty',
  1904. 'sec-fetch-mode' => 'cors',
  1905. 'sec-fetch-site' => 'same-origin',
  1906. 'sec-ch-ua-platform' => '"Windows"',
  1907. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1908. 'sec-ch-ua-mobile' => '?0',
  1909. 'x-requested-with' => 'XMLHttpRequest',
  1910. 'accept' => '*/*',
  1911. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1912. 'connection' => 'keep-alive',
  1913. 'host' => 'gaoyx.com',
  1914. 'content-length' => '',
  1915. 'content-type' => '',
  1916. )
  1917. [ info ] [ PARAM ] array (
  1918. 'spm' => 'm-64-175-301',
  1919. 'open_type' => 'modal',
  1920. )
  1921. [ info ] [ DB ] INIT mysql
  1922. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\form.html [ array (
  1923. 0 => 'vo',
  1924. 1 => 'table',
  1925. 2 => 'app',
  1926. 3 => 'request',
  1927. 4 => 'csrf_state',
  1928. 5 => 'csrf_message',
  1929. 6 => 'title',
  1930. 7 => 'module_arr',
  1931. 8 => 'module_list',
  1932. ) ]
  1933. ---------------------------------------------------------------
  1934. [2023-12-25T11:08:23+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  1935. [运行时间:0.502117s] [吞吐率:1.99req/s] [内存消耗:4,912.99kb] [文件加载:149]
  1936. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1937. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1938. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1939. [ info ] [ ROUTE ] array (
  1940. )
  1941. [ info ] [ HEADER ] array (
  1942. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2',
  1943. 'accept-language' => 'zh-CN,zh;q=0.9',
  1944. 'accept-encoding' => 'gzip, deflate, br',
  1945. 'referer' => 'https://gaoyx.com/admin.html',
  1946. 'sec-fetch-dest' => 'document',
  1947. 'sec-fetch-user' => '?1',
  1948. 'sec-fetch-mode' => 'navigate',
  1949. 'sec-fetch-site' => 'same-origin',
  1950. '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',
  1951. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1952. 'upgrade-insecure-requests' => '1',
  1953. 'sec-ch-ua-platform' => '"Windows"',
  1954. 'sec-ch-ua-mobile' => '?0',
  1955. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1956. 'cache-control' => 'max-age=0',
  1957. 'connection' => 'keep-alive',
  1958. 'host' => 'gaoyx.com',
  1959. 'content-length' => '',
  1960. 'content-type' => '',
  1961. )
  1962. [ info ] [ PARAM ] array (
  1963. )
  1964. [ info ] [ DB ] INIT mysql
  1965. ---------------------------------------------------------------
  1966. [2023-12-25T11:08:24+08:00] 127.0.0.1 GET gaoyx.com/admin/login.html
  1967. [运行时间:1.395809s] [吞吐率:0.72req/s] [内存消耗:14,771.66kb] [文件加载:336]
  1968. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  1969. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  1970. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  1971. [ info ] [ ROUTE ] array (
  1972. )
  1973. [ info ] [ HEADER ] array (
  1974. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtKiwW/gUx6Odq0PdXnOfHkA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtOJWRIPDy6TlVgbhqaj6RFlsf_OF7htq1fuPl0OF85F9ZBJ6CI66hct3P9GiSLSiv1uu9kiW9Ur1pMhINL6HEENDli7fSjkGeH7xiC240oYHSrclUpDgpjrseAeCi0pUsPRjiP3HP9LkZnLfu1qPXN-mKCSxCJu9oo8jPp2ddeM8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  1975. 'accept-language' => 'zh-CN,zh;q=0.9',
  1976. 'accept-encoding' => 'gzip, deflate, br',
  1977. 'referer' => 'https://gaoyx.com/admin.html',
  1978. 'sec-ch-ua-platform' => '"Windows"',
  1979. 'sec-ch-ua-mobile' => '?0',
  1980. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  1981. 'sec-fetch-dest' => 'document',
  1982. 'sec-fetch-user' => '?1',
  1983. 'sec-fetch-mode' => 'navigate',
  1984. 'sec-fetch-site' => 'same-origin',
  1985. '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',
  1986. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  1987. 'upgrade-insecure-requests' => '1',
  1988. 'cache-control' => 'max-age=0',
  1989. 'connection' => 'keep-alive',
  1990. 'host' => 'gaoyx.com',
  1991. 'content-length' => '',
  1992. 'content-type' => '',
  1993. )
  1994. [ info ] [ PARAM ] array (
  1995. )
  1996. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\login\index.html [ array (
  1997. 0 => 'app',
  1998. 1 => 'request',
  1999. 2 => 'csrf_state',
  2000. 3 => 'csrf_message',
  2001. 4 => 'title',
  2002. 5 => 'captcha_type',
  2003. 6 => 'captcha_token',
  2004. 7 => 'devmode',
  2005. ) ]
  2006. [ info ] [ DB ] INIT mysql
  2007. ---------------------------------------------------------------
  2008. [2023-12-25T11:08:25+08:00] 127.0.0.1 GET gaoyx.com/admin/login.html
  2009. [运行时间:0.044408s] [吞吐率:22.52req/s] [内存消耗:4,477.95kb] [文件加载:148]
  2010. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2011. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2012. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2013. [ info ] [ ROUTE ] array (
  2014. )
  2015. [ info ] [ HEADER ] array (
  2016. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtKiwW/gUx6Odq0PdXnOfHkA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtOJWRIPDy6TlVgbhqaj6RFlsf_OF7htq1fuPl0OF85F9ZBJ6CI66hct3P9GiSLSiv1uu9kiW9Ur1pMhINL6HEENDli7fSjkGeH7xiC240oYHSrclUpDgpjrseAeCi0pUsPRjiP3HP9LkZnLfu1qPXN-mKCSxCJu9oo8jPp2ddeM8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2017. 'accept-language' => 'zh-CN,zh;q=0.9',
  2018. 'accept-encoding' => 'gzip, deflate, br',
  2019. 'referer' => 'https://gaoyx.com/admin/login.html',
  2020. 'sec-fetch-dest' => 'document',
  2021. 'sec-fetch-mode' => 'navigate',
  2022. 'sec-fetch-site' => 'same-origin',
  2023. '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',
  2024. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2025. 'upgrade-insecure-requests' => '1',
  2026. 'sec-ch-ua-platform' => '"Windows"',
  2027. 'sec-ch-ua-mobile' => '?0',
  2028. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2029. 'connection' => 'keep-alive',
  2030. 'host' => 'gaoyx.com',
  2031. 'content-length' => '',
  2032. 'content-type' => '',
  2033. )
  2034. [ info ] [ PARAM ] array (
  2035. )
  2036. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\login\index.html [ array (
  2037. 0 => 'app',
  2038. 1 => 'request',
  2039. 2 => 'csrf_state',
  2040. 3 => 'csrf_message',
  2041. 4 => 'title',
  2042. 5 => 'captcha_type',
  2043. 6 => 'captcha_token',
  2044. 7 => 'devmode',
  2045. ) ]
  2046. ---------------------------------------------------------------
  2047. [2023-12-25T11:08:25+08:00] 127.0.0.1 POST gaoyx.com/admin/login/captcha
  2048. [运行时间:0.048851s] [吞吐率:20.47req/s] [内存消耗:3,795.59kb] [文件加载:143]
  2049. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2050. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2051. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2052. [ info ] [ ROUTE ] array (
  2053. )
  2054. [ info ] [ HEADER ] array (
  2055. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtKiwW/gUx6Odq0PdXnOfHkA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtOJWRIPDy6TlVgbhqaj6RFlsf_OF7htq1fuPl0OF85F9ZBJ6CI66hct3P9GiSLSiv1uu9kiW9Ur1pMhINL6HEENDli7fSjkGeH7xiC240oYHSrclUpDgpjrseAeCi0pUsPRjiP3HP9LkZnLfu1qPXN-mKCSxCJu9oo8jPp2ddeM8; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2056. 'accept-language' => 'zh-CN,zh;q=0.9',
  2057. 'accept-encoding' => 'gzip, deflate, br',
  2058. 'referer' => 'https://gaoyx.com/admin/login.html',
  2059. 'sec-fetch-dest' => 'empty',
  2060. 'sec-fetch-mode' => 'cors',
  2061. 'sec-fetch-site' => 'same-origin',
  2062. 'origin' => 'https://gaoyx.com',
  2063. 'sec-ch-ua-platform' => '"Windows"',
  2064. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2065. 'sec-ch-ua-mobile' => '?0',
  2066. 'x-requested-with' => 'XMLHttpRequest',
  2067. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  2068. 'accept' => '*/*',
  2069. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2070. 'content-length' => '43',
  2071. 'connection' => 'keep-alive',
  2072. 'host' => 'gaoyx.com',
  2073. )
  2074. [ info ] [ PARAM ] array (
  2075. 'type' => 'login_captcha',
  2076. 'token' => '202312251925924016',
  2077. )
  2078. ---------------------------------------------------------------
  2079. [2023-12-25T11:08:26+08:00] 127.0.0.1 GET gaoyx.com/upload/decb0fe26fa3f486/b3f6521bf29403c8.png
  2080. [运行时间:0.032157s] [吞吐率:31.10req/s] [内存消耗:2,360.02kb] [文件加载:130]
  2081. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2082. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2083. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2084. ---------------------------------------------------------------
  2085. [2023-12-25T13:50:26+08:00] 127.0.0.1 GET gaoyx.com/apidoc/config
  2086. [运行时间:0.094661s] [吞吐率:10.56req/s] [内存消耗:3,436.66kb] [文件加载:133]
  2087. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2088. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2089. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2090. [ info ] [ ROUTE ] array (
  2091. 'rule' => 'apidoc/config',
  2092. 'route' => '\\hg\\apidoc\\Controller@getConfig',
  2093. 'option' =>
  2094. array (
  2095. 'merge_rule_regex' => false,
  2096. ),
  2097. 'var' =>
  2098. array (
  2099. ),
  2100. )
  2101. [ info ] [ HEADER ] array (
  2102. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2103. 'accept-language' => 'zh-CN,zh;q=0.9',
  2104. 'accept-encoding' => 'gzip, deflate, br',
  2105. 'referer' => 'https://gaoyx.com/apidoc/?appKey=V1.0',
  2106. 'sec-fetch-dest' => 'empty',
  2107. 'sec-fetch-mode' => 'cors',
  2108. 'sec-fetch-site' => 'same-origin',
  2109. 'sec-ch-ua-platform' => '"Windows"',
  2110. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2111. 'sec-ch-ua-mobile' => '?0',
  2112. 'accept' => 'application/json, text/plain, */*',
  2113. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2114. 'connection' => 'keep-alive',
  2115. 'host' => 'gaoyx.com',
  2116. 'content-length' => '',
  2117. 'content-type' => '',
  2118. )
  2119. [ info ] [ PARAM ] array (
  2120. )
  2121. ---------------------------------------------------------------
  2122. [2023-12-25T13:50:26+08:00] 127.0.0.1 GET gaoyx.com/apidoc/data?appKey=V1.0&version=V1.0&cacheFileName=&reload=false
  2123. [运行时间:0.126468s] [吞吐率:7.91req/s] [内存消耗:9,003.06kb] [文件加载:172]
  2124. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2125. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2126. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2127. [ info ] [ ROUTE ] array (
  2128. 'rule' => 'apidoc/data',
  2129. 'route' => '\\hg\\apidoc\\Controller@getList',
  2130. 'option' =>
  2131. array (
  2132. 'merge_rule_regex' => false,
  2133. ),
  2134. 'var' =>
  2135. array (
  2136. ),
  2137. )
  2138. [ info ] [ HEADER ] array (
  2139. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2140. 'accept-language' => 'zh-CN,zh;q=0.9',
  2141. 'accept-encoding' => 'gzip, deflate, br',
  2142. 'referer' => 'https://gaoyx.com/apidoc/?appKey=V1.0',
  2143. 'sec-fetch-dest' => 'empty',
  2144. 'sec-fetch-mode' => 'cors',
  2145. 'sec-fetch-site' => 'same-origin',
  2146. 'sec-ch-ua-platform' => '"Windows"',
  2147. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2148. 'sec-ch-ua-mobile' => '?0',
  2149. 'accept' => 'application/json, text/plain, */*',
  2150. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2151. 'connection' => 'keep-alive',
  2152. 'host' => 'gaoyx.com',
  2153. 'content-length' => '',
  2154. 'content-type' => '',
  2155. )
  2156. [ info ] [ PARAM ] array (
  2157. 'appKey' => 'V1.0',
  2158. 'version' => 'V1.0',
  2159. 'cacheFileName' => '',
  2160. 'reload' => 'false',
  2161. )
  2162. ---------------------------------------------------------------
  2163. [2023-12-25T13:50:34+08:00] 127.0.0.1 POST gaoyx.com/admin/login.html
  2164. [运行时间:0.048009s] [吞吐率:20.83req/s] [内存消耗:4,020.92kb] [文件加载:146]
  2165. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2166. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2167. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2168. [ info ] [ ROUTE ] array (
  2169. )
  2170. [ info ] [ HEADER ] array (
  2171. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtBLqJy4BLPiD1lMUX8LT78w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtJ_pXLrdDwyj4CF6e49px9rINztFOkxM4pbqyKuVzneD6zX2lmIfgp9wHuRHzxtdup6v7Be2sqEKCZ7WocpK910lo6UB3XPfYZraO3jRpZAnXK-a0YeEy3LukH6_fZ6kjz35RFvc9DzLm0xKtr69tVhDpXArt_tRNjLsZM7EDZZn; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2172. 'accept-language' => 'zh-CN,zh;q=0.9',
  2173. 'accept-encoding' => 'gzip, deflate, br',
  2174. 'referer' => 'https://gaoyx.com/admin/login.html',
  2175. 'sec-fetch-dest' => 'empty',
  2176. 'sec-fetch-mode' => 'cors',
  2177. 'sec-fetch-site' => 'same-origin',
  2178. 'origin' => 'https://gaoyx.com',
  2179. 'sec-ch-ua-platform' => '"Windows"',
  2180. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2181. 'sec-ch-ua-mobile' => '?0',
  2182. 'x-requested-with' => 'XMLHttpRequest',
  2183. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  2184. 'accept' => '*/*',
  2185. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2186. 'content-length' => '100',
  2187. 'connection' => 'keep-alive',
  2188. 'host' => 'gaoyx.com',
  2189. )
  2190. [ info ] [ PARAM ] array (
  2191. 'username' => 'admin',
  2192. 'password' => '507f5fce9520857db4e18e723f07ce1c',
  2193. 'verify' => 'P5XW',
  2194. 'uniqid' => 'captcha6588f229d39bb9433',
  2195. )
  2196. ---------------------------------------------------------------
  2197. [2023-12-25T13:50:34+08:00] 127.0.0.1 POST gaoyx.com/admin/login/captcha
  2198. [运行时间:0.037260s] [吞吐率:26.84req/s] [内存消耗:3,795.17kb] [文件加载:143]
  2199. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2200. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2201. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2202. [ info ] [ ROUTE ] array (
  2203. )
  2204. [ info ] [ HEADER ] array (
  2205. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtBLqJy4BLPiD1lMUX8LT78w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtJ_pXLrdDwyj4CF6e49px9rINztFOkxM4pbqyKuVzneD6zX2lmIfgp9wHuRHzxtdup6v7Be2sqEKCZ7WocpK910lo6UB3XPfYZraO3jRpZAnXK-a0YeEy3LukH6_fZ6kjz35RFvc9DzLm0xKtr69tVhDpXArt_tRNjLsZM7EDZZn; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2206. 'accept-language' => 'zh-CN,zh;q=0.9',
  2207. 'accept-encoding' => 'gzip, deflate, br',
  2208. 'referer' => 'https://gaoyx.com/admin/login.html',
  2209. 'sec-fetch-dest' => 'empty',
  2210. 'sec-fetch-mode' => 'cors',
  2211. 'sec-fetch-site' => 'same-origin',
  2212. 'origin' => 'https://gaoyx.com',
  2213. 'sec-ch-ua-platform' => '"Windows"',
  2214. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2215. 'sec-ch-ua-mobile' => '?0',
  2216. 'x-requested-with' => 'XMLHttpRequest',
  2217. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  2218. 'accept' => '*/*',
  2219. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2220. 'content-length' => '43',
  2221. 'connection' => 'keep-alive',
  2222. 'host' => 'gaoyx.com',
  2223. )
  2224. [ info ] [ PARAM ] array (
  2225. 'type' => 'login_captcha',
  2226. 'token' => '202312251925924016',
  2227. )
  2228. ---------------------------------------------------------------
  2229. [2023-12-25T13:50:37+08:00] 127.0.0.1 GET gaoyx.com/admin/login.html
  2230. [运行时间:1.540250s] [吞吐率:0.65req/s] [内存消耗:6,192.13kb] [文件加载:153]
  2231. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2232. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2233. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2234. [ info ] [ ROUTE ] array (
  2235. )
  2236. [ info ] [ HEADER ] array (
  2237. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtBLqJy4BLPiD1lMUX8LT78w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtJ_pXLrdDwyj4CF6e49px9rINztFOkxM4pbqyKuVzneD6zX2lmIfgp9wHuRHzxtdup6v7Be2sqEKCZ7WocpK910lo6UB3XPfYZraO3jRpZAnXK-a0YeEy3LukH6_fZ6kjz35RFvc9DzLm0xKtr69tVhDpXArt_tRNjLsZM7EDZZn; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2238. 'accept-language' => 'zh-CN,zh;q=0.9',
  2239. 'accept-encoding' => 'gzip, deflate, br',
  2240. 'referer' => 'https://gaoyx.com/admin/login.html',
  2241. 'sec-fetch-dest' => 'document',
  2242. 'sec-fetch-user' => '?1',
  2243. 'sec-fetch-mode' => 'navigate',
  2244. 'sec-fetch-site' => 'same-origin',
  2245. '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',
  2246. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2247. 'upgrade-insecure-requests' => '1',
  2248. 'sec-ch-ua-platform' => '"Windows"',
  2249. 'sec-ch-ua-mobile' => '?0',
  2250. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2251. 'cache-control' => 'max-age=0',
  2252. 'connection' => 'keep-alive',
  2253. 'host' => 'gaoyx.com',
  2254. 'content-length' => '',
  2255. 'content-type' => '',
  2256. )
  2257. [ info ] [ PARAM ] array (
  2258. )
  2259. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\login\index.html [ array (
  2260. 0 => 'app',
  2261. 1 => 'request',
  2262. 2 => 'csrf_state',
  2263. 3 => 'csrf_message',
  2264. 4 => 'title',
  2265. 5 => 'captcha_type',
  2266. 6 => 'captcha_token',
  2267. 7 => 'devmode',
  2268. ) ]
  2269. [ info ] [ DB ] INIT mysql
  2270. ---------------------------------------------------------------
  2271. [2023-12-25T13:50:37+08:00] 127.0.0.1 POST gaoyx.com/admin/login/captcha
  2272. [运行时间:0.035378s] [吞吐率:28.27req/s] [内存消耗:3,795.59kb] [文件加载:143]
  2273. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2274. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2275. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2276. [ info ] [ ROUTE ] array (
  2277. )
  2278. [ info ] [ HEADER ] array (
  2279. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtBLqJy4BLPiD1lMUX8LT78w%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtJ_pXLrdDwyj4CF6e49px9rINztFOkxM4pbqyKuVzneD6zX2lmIfgp9wHuRHzxtdup6v7Be2sqEKCZ7WocpK910lo6UB3XPfYZraO3jRpZAnXK-a0YeEy3LukH6_fZ6kjz35RFvc9DzLm0xKtr69tVhDpXArt_tRNjLsZM7EDZZn; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2280. 'accept-language' => 'zh-CN,zh;q=0.9',
  2281. 'accept-encoding' => 'gzip, deflate, br',
  2282. 'referer' => 'https://gaoyx.com/admin/login.html',
  2283. 'sec-fetch-dest' => 'empty',
  2284. 'sec-fetch-mode' => 'cors',
  2285. 'sec-fetch-site' => 'same-origin',
  2286. 'origin' => 'https://gaoyx.com',
  2287. 'sec-ch-ua-platform' => '"Windows"',
  2288. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2289. 'sec-ch-ua-mobile' => '?0',
  2290. 'x-requested-with' => 'XMLHttpRequest',
  2291. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  2292. 'accept' => '*/*',
  2293. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2294. 'content-length' => '43',
  2295. 'connection' => 'keep-alive',
  2296. 'host' => 'gaoyx.com',
  2297. )
  2298. [ info ] [ PARAM ] array (
  2299. 'type' => 'login_captcha',
  2300. 'token' => '202312256335794208',
  2301. )
  2302. ---------------------------------------------------------------
  2303. [2023-12-25T13:50:42+08:00] 127.0.0.1 POST gaoyx.com/admin/login.html
  2304. [运行时间:0.864534s] [吞吐率:1.16req/s] [内存消耗:4,989.93kb] [文件加载:153]
  2305. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2306. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2307. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2308. [ info ] [ ROUTE ] array (
  2309. )
  2310. [ info ] [ HEADER ] array (
  2311. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtOgvbLO49xGDJA9E22ZqLWw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifyKP12wlk2p3iTBfZkKKb6dlWZOoTAnmbxwSJ2YWdPCy4Fz_w5wbMfKjx0oYdZ5LucuhGKVefun0PSLN1FN3ruReSvGSmaLPnjjBG2npUhcPTw_CYdZDEnlhX98k5kGHiTIlmiSIOifJ7BaHsTY1nK; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2312. 'accept-language' => 'zh-CN,zh;q=0.9',
  2313. 'accept-encoding' => 'gzip, deflate, br',
  2314. 'referer' => 'https://gaoyx.com/admin/login.html',
  2315. 'sec-fetch-dest' => 'empty',
  2316. 'sec-fetch-mode' => 'cors',
  2317. 'sec-fetch-site' => 'same-origin',
  2318. 'origin' => 'https://gaoyx.com',
  2319. 'sec-ch-ua-platform' => '"Windows"',
  2320. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2321. 'sec-ch-ua-mobile' => '?0',
  2322. 'x-requested-with' => 'XMLHttpRequest',
  2323. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  2324. 'accept' => '*/*',
  2325. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2326. 'content-length' => '100',
  2327. 'connection' => 'keep-alive',
  2328. 'host' => 'gaoyx.com',
  2329. )
  2330. [ info ] [ PARAM ] array (
  2331. 'username' => 'admin',
  2332. 'password' => '8bbb9781fcb9db7721050a02350be8fa',
  2333. 'verify' => 'A328',
  2334. 'uniqid' => 'captcha6589182d9ad632674',
  2335. )
  2336. [ info ] [ DB ] INIT mysql
  2337. ---------------------------------------------------------------
  2338. [2023-12-25T13:50:42+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  2339. [运行时间:0.894097s] [吞吐率:1.12req/s] [内存消耗:14,183.56kb] [文件加载:337]
  2340. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2341. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2342. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2343. [ info ] [ ROUTE ] array (
  2344. )
  2345. [ info ] [ HEADER ] array (
  2346. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2347. 'accept-language' => 'zh-CN,zh;q=0.9',
  2348. 'accept-encoding' => 'gzip, deflate, br',
  2349. 'referer' => 'https://gaoyx.com/admin/login.html',
  2350. 'sec-fetch-dest' => 'document',
  2351. 'sec-fetch-user' => '?1',
  2352. 'sec-fetch-mode' => 'navigate',
  2353. 'sec-fetch-site' => 'same-origin',
  2354. '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',
  2355. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2356. 'upgrade-insecure-requests' => '1',
  2357. 'sec-ch-ua-platform' => '"Windows"',
  2358. 'sec-ch-ua-mobile' => '?0',
  2359. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2360. 'connection' => 'keep-alive',
  2361. 'host' => 'gaoyx.com',
  2362. 'content-length' => '',
  2363. 'content-type' => '',
  2364. )
  2365. [ info ] [ PARAM ] array (
  2366. )
  2367. [ info ] [ DB ] INIT mysql
  2368. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  2369. 0 => 'app',
  2370. 1 => 'request',
  2371. 2 => 'csrf_state',
  2372. 3 => 'csrf_message',
  2373. 4 => 'title',
  2374. 5 => 'menus',
  2375. ) ]
  2376. ---------------------------------------------------------------
  2377. [2023-12-25T13:50:43+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  2378. [运行时间:0.553897s] [吞吐率:1.81req/s] [内存消耗:4,289.73kb] [文件加载:158]
  2379. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2380. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2381. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2382. [ info ] [ ROUTE ] array (
  2383. )
  2384. [ info ] [ HEADER ] array (
  2385. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtM9KQLiRZA/zYy3ugUYAMZ0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtG54laOTZvyIsGyJjqxNr3wJa7iaq3320OQCjA3RweJkjGMsPqH52R2WZvaaa1H-rmR_fsDlOYXdNbvek1WRnm7bQcrr3SdrCFD3g01Uc8aw49wK8Iqq9Q7CnOremqASO-nB0NiGCYfSEz2D2Yl6DHkAbkwbVZI4NT8Y4sVMvwQ2; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf',
  2386. 'accept-language' => 'zh-CN,zh;q=0.9',
  2387. 'accept-encoding' => 'gzip, deflate, br',
  2388. 'referer' => 'https://gaoyx.com/admin.html',
  2389. 'sec-fetch-dest' => 'empty',
  2390. 'sec-fetch-mode' => 'cors',
  2391. 'sec-fetch-site' => 'same-origin',
  2392. 'sec-ch-ua-platform' => '"Windows"',
  2393. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2394. 'sec-ch-ua-mobile' => '?0',
  2395. 'x-requested-with' => 'XMLHttpRequest',
  2396. 'accept' => '*/*',
  2397. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2398. 'connection' => 'keep-alive',
  2399. 'host' => 'gaoyx.com',
  2400. 'content-length' => '',
  2401. 'content-type' => '',
  2402. )
  2403. [ info ] [ PARAM ] array (
  2404. 'spm' => 'm-64-175-254',
  2405. )
  2406. [ info ] [ DB ] INIT mysql
  2407. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  2408. 0 => 'page',
  2409. 1 => 'list',
  2410. 2 => 'table',
  2411. 3 => 'app',
  2412. 4 => 'request',
  2413. 5 => 'csrf_state',
  2414. 6 => 'csrf_message',
  2415. 7 => 'title',
  2416. 8 => 'pagehtml',
  2417. ) ]
  2418. ---------------------------------------------------------------
  2419. [2023-12-25T13:50:52+08:00] 127.0.0.1 GET gaoyx.com/user/member/index.html?spm=m-64-175-176
  2420. [运行时间:5.822808s] [吞吐率:0.17req/s] [内存消耗:4,919.04kb] [文件加载:168]
  2421. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2422. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2423. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2424. [ info ] [ ROUTE ] array (
  2425. )
  2426. [ info ] [ HEADER ] array (
  2427. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2; page-limit=20',
  2428. 'accept-language' => 'zh-CN,zh;q=0.9',
  2429. 'accept-encoding' => 'gzip, deflate, br',
  2430. 'referer' => 'https://gaoyx.com/admin.html',
  2431. 'sec-fetch-dest' => 'empty',
  2432. 'sec-fetch-mode' => 'cors',
  2433. 'sec-fetch-site' => 'same-origin',
  2434. 'sec-ch-ua-platform' => '"Windows"',
  2435. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2436. 'sec-ch-ua-mobile' => '?0',
  2437. 'x-requested-with' => 'XMLHttpRequest',
  2438. 'accept' => '*/*',
  2439. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2440. 'connection' => 'keep-alive',
  2441. 'host' => 'gaoyx.com',
  2442. 'content-length' => '',
  2443. 'content-type' => '',
  2444. )
  2445. [ info ] [ PARAM ] array (
  2446. 'spm' => 'm-64-175-176',
  2447. )
  2448. [ info ] [ DB ] INIT mysql
  2449. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\index.html [ array (
  2450. 0 => 'page',
  2451. 1 => 'list',
  2452. 2 => 'table',
  2453. 3 => 'app',
  2454. 4 => 'request',
  2455. 5 => 'csrf_state',
  2456. 6 => 'csrf_message',
  2457. 7 => 'search_url',
  2458. 8 => 'title',
  2459. 9 => 'tag_arr',
  2460. 10 => 'level_arr',
  2461. 11 => 'pagehtml',
  2462. ) ]
  2463. ---------------------------------------------------------------
  2464. [2023-12-25T13:50:57+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  2465. [运行时间:0.540271s] [吞吐率:1.85req/s] [内存消耗:4,312.24kb] [文件加载:158]
  2466. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2467. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2468. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2469. [ info ] [ ROUTE ] array (
  2470. )
  2471. [ info ] [ HEADER ] array (
  2472. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2; page-limit=20',
  2473. 'accept-language' => 'zh-CN,zh;q=0.9',
  2474. 'accept-encoding' => 'gzip, deflate, br',
  2475. 'referer' => 'https://gaoyx.com/admin.html',
  2476. 'sec-fetch-dest' => 'empty',
  2477. 'sec-fetch-mode' => 'cors',
  2478. 'sec-fetch-site' => 'same-origin',
  2479. 'sec-ch-ua-platform' => '"Windows"',
  2480. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2481. 'sec-ch-ua-mobile' => '?0',
  2482. 'x-requested-with' => 'XMLHttpRequest',
  2483. 'accept' => '*/*',
  2484. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2485. 'connection' => 'keep-alive',
  2486. 'host' => 'gaoyx.com',
  2487. 'content-length' => '',
  2488. 'content-type' => '',
  2489. )
  2490. [ info ] [ PARAM ] array (
  2491. 'spm' => 'm-277-280-197',
  2492. )
  2493. [ info ] [ DB ] INIT mysql
  2494. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  2495. 0 => 'page',
  2496. 1 => 'list',
  2497. 2 => 'table',
  2498. 3 => 'app',
  2499. 4 => 'request',
  2500. 5 => 'csrf_state',
  2501. 6 => 'csrf_message',
  2502. 7 => 'title',
  2503. 8 => 'place_desc',
  2504. 9 => 'pagehtml',
  2505. ) ]
  2506. ---------------------------------------------------------------
  2507. [2023-12-25T13:51:00+08:00] 127.0.0.1 GET gaoyx.com/mall/express_company/index.html?spm=m-136-196-200
  2508. [运行时间:0.522675s] [吞吐率:1.91req/s] [内存消耗:4,314.32kb] [文件加载:158]
  2509. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2510. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2511. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2512. [ info ] [ ROUTE ] array (
  2513. )
  2514. [ info ] [ HEADER ] array (
  2515. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2; page-limit=20',
  2516. 'accept-language' => 'zh-CN,zh;q=0.9',
  2517. 'accept-encoding' => 'gzip, deflate, br',
  2518. 'referer' => 'https://gaoyx.com/admin.html',
  2519. 'sec-fetch-dest' => 'empty',
  2520. 'sec-fetch-mode' => 'cors',
  2521. 'sec-fetch-site' => 'same-origin',
  2522. 'sec-ch-ua-platform' => '"Windows"',
  2523. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2524. 'sec-ch-ua-mobile' => '?0',
  2525. 'x-requested-with' => 'XMLHttpRequest',
  2526. 'accept' => '*/*',
  2527. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2528. 'connection' => 'keep-alive',
  2529. 'host' => 'gaoyx.com',
  2530. 'content-length' => '',
  2531. 'content-type' => '',
  2532. )
  2533. [ info ] [ PARAM ] array (
  2534. 'spm' => 'm-136-196-200',
  2535. )
  2536. [ info ] [ DB ] INIT mysql
  2537. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\express_company\index.html [ array (
  2538. 0 => 'page',
  2539. 1 => 'list',
  2540. 2 => 'table',
  2541. 3 => 'app',
  2542. 4 => 'request',
  2543. 5 => 'csrf_state',
  2544. 6 => 'csrf_message',
  2545. 7 => 'title',
  2546. 8 => 'pagehtml',
  2547. ) ]
  2548. ---------------------------------------------------------------
  2549. [2023-12-25T13:51:01+08:00] 127.0.0.1 GET gaoyx.com/nutrition/datum_cate/index.html?spm=m-140-165-166
  2550. [运行时间:0.431893s] [吞吐率:2.32req/s] [内存消耗:4,185.48kb] [文件加载:154]
  2551. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2552. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2553. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2554. [ info ] [ ROUTE ] array (
  2555. )
  2556. [ info ] [ HEADER ] array (
  2557. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2; page-limit=20',
  2558. 'accept-language' => 'zh-CN,zh;q=0.9',
  2559. 'accept-encoding' => 'gzip, deflate, br',
  2560. 'referer' => 'https://gaoyx.com/admin.html',
  2561. 'sec-fetch-dest' => 'empty',
  2562. 'sec-fetch-mode' => 'cors',
  2563. 'sec-fetch-site' => 'same-origin',
  2564. 'sec-ch-ua-platform' => '"Windows"',
  2565. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2566. 'sec-ch-ua-mobile' => '?0',
  2567. 'x-requested-with' => 'XMLHttpRequest',
  2568. 'accept' => '*/*',
  2569. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2570. 'connection' => 'keep-alive',
  2571. 'host' => 'gaoyx.com',
  2572. 'content-length' => '',
  2573. 'content-type' => '',
  2574. )
  2575. [ info ] [ PARAM ] array (
  2576. 'spm' => 'm-140-165-166',
  2577. )
  2578. [ info ] [ DB ] INIT mysql
  2579. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\nutrition\view\datum_cate\index.html [ array (
  2580. 0 => 'list',
  2581. 1 => 'table',
  2582. 2 => 'app',
  2583. 3 => 'request',
  2584. 4 => 'csrf_state',
  2585. 5 => 'csrf_message',
  2586. 6 => 'title',
  2587. ) ]
  2588. ---------------------------------------------------------------
  2589. [2023-12-25T13:51:03+08:00] 127.0.0.1 GET gaoyx.com/order/level_order/index.html?spm=m-150-253
  2590. [运行时间:0.582229s] [吞吐率:1.72req/s] [内存消耗:4,386.97kb] [文件加载:158]
  2591. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2592. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2593. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2594. [ info ] [ ROUTE ] array (
  2595. )
  2596. [ info ] [ HEADER ] array (
  2597. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2; page-limit=20',
  2598. 'accept-language' => 'zh-CN,zh;q=0.9',
  2599. 'accept-encoding' => 'gzip, deflate, br',
  2600. 'referer' => 'https://gaoyx.com/admin.html',
  2601. 'sec-fetch-dest' => 'empty',
  2602. 'sec-fetch-mode' => 'cors',
  2603. 'sec-fetch-site' => 'same-origin',
  2604. 'sec-ch-ua-platform' => '"Windows"',
  2605. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2606. 'sec-ch-ua-mobile' => '?0',
  2607. 'x-requested-with' => 'XMLHttpRequest',
  2608. 'accept' => '*/*',
  2609. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2610. 'connection' => 'keep-alive',
  2611. 'host' => 'gaoyx.com',
  2612. 'content-length' => '',
  2613. 'content-type' => '',
  2614. )
  2615. [ info ] [ PARAM ] array (
  2616. 'spm' => 'm-150-253',
  2617. )
  2618. [ info ] [ DB ] INIT mysql
  2619. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\order\view\level_order\index.html [ array (
  2620. 0 => 'page',
  2621. 1 => 'list',
  2622. 2 => 'table',
  2623. 3 => 'app',
  2624. 4 => 'request',
  2625. 5 => 'csrf_state',
  2626. 6 => 'csrf_message',
  2627. 7 => 'title',
  2628. 8 => 'pagehtml',
  2629. ) ]
  2630. ---------------------------------------------------------------
  2631. [2023-12-25T13:51:04+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  2632. [运行时间:0.539660s] [吞吐率:1.85req/s] [内存消耗:4,316.64kb] [文件加载:158]
  2633. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2634. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2635. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2636. [ info ] [ ROUTE ] array (
  2637. )
  2638. [ info ] [ HEADER ] array (
  2639. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2; page-limit=20',
  2640. 'accept-language' => 'zh-CN,zh;q=0.9',
  2641. 'accept-encoding' => 'gzip, deflate, br',
  2642. 'referer' => 'https://gaoyx.com/admin.html',
  2643. 'sec-fetch-dest' => 'empty',
  2644. 'sec-fetch-mode' => 'cors',
  2645. 'sec-fetch-site' => 'same-origin',
  2646. 'sec-ch-ua-platform' => '"Windows"',
  2647. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2648. 'sec-ch-ua-mobile' => '?0',
  2649. 'x-requested-with' => 'XMLHttpRequest',
  2650. 'accept' => '*/*',
  2651. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2652. 'connection' => 'keep-alive',
  2653. 'host' => 'gaoyx.com',
  2654. 'content-length' => '',
  2655. 'content-type' => '',
  2656. )
  2657. [ info ] [ PARAM ] array (
  2658. 'spm' => 'm-277-280-197',
  2659. )
  2660. [ info ] [ DB ] INIT mysql
  2661. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  2662. 0 => 'page',
  2663. 1 => 'list',
  2664. 2 => 'table',
  2665. 3 => 'app',
  2666. 4 => 'request',
  2667. 5 => 'csrf_state',
  2668. 6 => 'csrf_message',
  2669. 7 => 'title',
  2670. 8 => 'place_desc',
  2671. 9 => 'pagehtml',
  2672. ) ]
  2673. ---------------------------------------------------------------
  2674. [2023-12-25T13:51:54+08:00] 127.0.0.1 GET gaoyx.com/mall/express_company/index.html?spm=m-136-196-200
  2675. [运行时间:0.545832s] [吞吐率:1.83req/s] [内存消耗:4,318.63kb] [文件加载:158]
  2676. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2677. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2678. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2679. [ info ] [ ROUTE ] array (
  2680. )
  2681. [ info ] [ HEADER ] array (
  2682. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2',
  2683. 'accept-language' => 'zh-CN,zh;q=0.9',
  2684. 'accept-encoding' => 'gzip, deflate, br',
  2685. 'referer' => 'https://gaoyx.com/admin.html',
  2686. 'sec-fetch-dest' => 'empty',
  2687. 'sec-fetch-mode' => 'cors',
  2688. 'sec-fetch-site' => 'same-origin',
  2689. 'sec-ch-ua-platform' => '"Windows"',
  2690. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2691. 'sec-ch-ua-mobile' => '?0',
  2692. 'x-requested-with' => 'XMLHttpRequest',
  2693. 'accept' => '*/*',
  2694. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2695. 'connection' => 'keep-alive',
  2696. 'host' => 'gaoyx.com',
  2697. 'content-length' => '',
  2698. 'content-type' => '',
  2699. )
  2700. [ info ] [ PARAM ] array (
  2701. 'spm' => 'm-136-196-200',
  2702. )
  2703. [ info ] [ DB ] INIT mysql
  2704. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\express_company\index.html [ array (
  2705. 0 => 'page',
  2706. 1 => 'list',
  2707. 2 => 'table',
  2708. 3 => 'app',
  2709. 4 => 'request',
  2710. 5 => 'csrf_state',
  2711. 6 => 'csrf_message',
  2712. 7 => 'title',
  2713. 8 => 'pagehtml',
  2714. ) ]
  2715. ---------------------------------------------------------------
  2716. [2023-12-25T13:51:55+08:00] 127.0.0.1 GET gaoyx.com/mall/goods_cate/index.html?spm=m-136-283-284
  2717. [运行时间:0.425849s] [吞吐率:2.35req/s] [内存消耗:4,241.68kb] [文件加载:155]
  2718. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2719. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2720. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2721. [ info ] [ ROUTE ] array (
  2722. )
  2723. [ info ] [ HEADER ] array (
  2724. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2; page-limit=20',
  2725. 'accept-language' => 'zh-CN,zh;q=0.9',
  2726. 'accept-encoding' => 'gzip, deflate, br',
  2727. 'referer' => 'https://gaoyx.com/admin.html',
  2728. 'sec-fetch-dest' => 'empty',
  2729. 'sec-fetch-mode' => 'cors',
  2730. 'sec-fetch-site' => 'same-origin',
  2731. 'sec-ch-ua-platform' => '"Windows"',
  2732. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2733. 'sec-ch-ua-mobile' => '?0',
  2734. 'x-requested-with' => 'XMLHttpRequest',
  2735. 'accept' => '*/*',
  2736. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2737. 'connection' => 'keep-alive',
  2738. 'host' => 'gaoyx.com',
  2739. 'content-length' => '',
  2740. 'content-type' => '',
  2741. )
  2742. [ info ] [ PARAM ] array (
  2743. 'spm' => 'm-136-283-284',
  2744. )
  2745. [ info ] [ DB ] INIT mysql
  2746. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\goods_cate\index.html [ array (
  2747. 0 => 'list',
  2748. 1 => 'table',
  2749. 2 => 'app',
  2750. 3 => 'request',
  2751. 4 => 'csrf_state',
  2752. 5 => 'csrf_message',
  2753. 6 => 'title',
  2754. ) ]
  2755. ---------------------------------------------------------------
  2756. [2023-12-25T13:56:54+08:00] 127.0.0.1 POST gaoyx.com/api/Mall/getGoodsList
  2757. [运行时间:1.624827s] [吞吐率:0.62req/s] [内存消耗:5,841.91kb] [文件加载:163]
  2758. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2759. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2760. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2761. [ info ] [ ROUTE ] array (
  2762. )
  2763. [ info ] [ HEADER ] array (
  2764. 'content-length' => '171',
  2765. 'content-type' => 'multipart/form-data; boundary=--------------------------943993925417941903904389',
  2766. 'host' => 'gaoyx.com',
  2767. 'connection' => 'keep-alive',
  2768. 'accept-encoding' => 'gzip, deflate, br',
  2769. 'accept' => '*/*',
  2770. 'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ5NSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzAyODg3NTM0LCJuYmYiOjE3MDI4ODc1MzQsImV4cCI6MTcxNzI4NzUzNCwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.s1LpKxtJOv83yfv-snXAOgVkHb6RyK6krOh6idIbj-A',
  2771. 'cache-control' => 'no-cache',
  2772. 'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
  2773. )
  2774. [ info ] [ PARAM ] array (
  2775. 'third_classify' => '33',
  2776. )
  2777. [ info ] [ DB ] INIT mysql
  2778. ---------------------------------------------------------------
  2779. [2023-12-25T13:57:17+08:00] 127.0.0.1 POST gaoyx.com/api/Mall/getGoodsList?third_classify=33
  2780. [运行时间:0.992829s] [吞吐率:1.01req/s] [内存消耗:5,956.19kb] [文件加载:166]
  2781. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2782. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2783. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2784. [ info ] [ ROUTE ] array (
  2785. )
  2786. [ info ] [ HEADER ] array (
  2787. 'content-length' => '171',
  2788. 'content-type' => 'multipart/form-data; boundary=--------------------------623173764070151537817805',
  2789. 'host' => 'gaoyx.com',
  2790. 'connection' => 'keep-alive',
  2791. 'accept-encoding' => 'gzip, deflate, br',
  2792. 'accept' => '*/*',
  2793. 'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ5NSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzAyODg3NTM0LCJuYmYiOjE3MDI4ODc1MzQsImV4cCI6MTcxNzI4NzUzNCwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.s1LpKxtJOv83yfv-snXAOgVkHb6RyK6krOh6idIbj-A',
  2794. 'cache-control' => 'no-cache',
  2795. 'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
  2796. )
  2797. [ info ] [ PARAM ] array (
  2798. 'third_classify' => '33',
  2799. )
  2800. [ info ] [ DB ] INIT mysql
  2801. ---------------------------------------------------------------
  2802. [2023-12-25T13:57:24+08:00] 127.0.0.1 POST gaoyx.com/api/Mall/getGoodsList?third_classify=32
  2803. [运行时间:0.954529s] [吞吐率:1.05req/s] [内存消耗:5,956.16kb] [文件加载:166]
  2804. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2805. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2806. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2807. [ info ] [ ROUTE ] array (
  2808. )
  2809. [ info ] [ HEADER ] array (
  2810. 'content-length' => '171',
  2811. 'content-type' => 'multipart/form-data; boundary=--------------------------495039081121913060749902',
  2812. 'host' => 'gaoyx.com',
  2813. 'connection' => 'keep-alive',
  2814. 'accept-encoding' => 'gzip, deflate, br',
  2815. 'accept' => '*/*',
  2816. 'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ5NSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzAyODg3NTM0LCJuYmYiOjE3MDI4ODc1MzQsImV4cCI6MTcxNzI4NzUzNCwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.s1LpKxtJOv83yfv-snXAOgVkHb6RyK6krOh6idIbj-A',
  2817. 'cache-control' => 'no-cache',
  2818. 'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
  2819. )
  2820. [ info ] [ PARAM ] array (
  2821. 'third_classify' => '33',
  2822. )
  2823. [ info ] [ DB ] INIT mysql
  2824. ---------------------------------------------------------------
  2825. [2023-12-25T14:05:56+08:00] 127.0.0.1 POST gaoyx.com/api/Mall/getGoodsList?third_classify=32
  2826. [运行时间:2.322189s] [吞吐率:0.43req/s] [内存消耗:5,964.43kb] [文件加载:166]
  2827. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2828. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2829. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2830. [ info ] [ ROUTE ] array (
  2831. )
  2832. [ info ] [ HEADER ] array (
  2833. 'content-length' => '171',
  2834. 'content-type' => 'multipart/form-data; boundary=--------------------------262491717188367307912554',
  2835. 'host' => 'gaoyx.com',
  2836. 'connection' => 'keep-alive',
  2837. 'accept-encoding' => 'gzip, deflate, br',
  2838. 'accept' => '*/*',
  2839. 'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ5NSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzAyODg3NTM0LCJuYmYiOjE3MDI4ODc1MzQsImV4cCI6MTcxNzI4NzUzNCwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.s1LpKxtJOv83yfv-snXAOgVkHb6RyK6krOh6idIbj-A',
  2840. 'cache-control' => 'no-cache',
  2841. 'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
  2842. )
  2843. [ info ] [ PARAM ] array (
  2844. 'third_classify' => '33',
  2845. )
  2846. [ info ] [ DB ] INIT mysql
  2847. ---------------------------------------------------------------
  2848. [2023-12-25T14:06:11+08:00] 127.0.0.1 POST gaoyx.com/api/Mall/getGoodsList?third_classify=32
  2849. [运行时间:0.985030s] [吞吐率:1.02req/s] [内存消耗:5,956.23kb] [文件加载:166]
  2850. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2851. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2852. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2853. [ info ] [ ROUTE ] array (
  2854. )
  2855. [ info ] [ HEADER ] array (
  2856. 'content-length' => '171',
  2857. 'content-type' => 'multipart/form-data; boundary=--------------------------294839995336926264899461',
  2858. 'host' => 'gaoyx.com',
  2859. 'connection' => 'keep-alive',
  2860. 'accept-encoding' => 'gzip, deflate, br',
  2861. 'accept' => '*/*',
  2862. 'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ5NSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzAyODg3NTM0LCJuYmYiOjE3MDI4ODc1MzQsImV4cCI6MTcxNzI4NzUzNCwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.s1LpKxtJOv83yfv-snXAOgVkHb6RyK6krOh6idIbj-A',
  2863. 'cache-control' => 'no-cache',
  2864. 'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
  2865. )
  2866. [ info ] [ PARAM ] array (
  2867. 'third_classify' => '33',
  2868. )
  2869. [ info ] [ DB ] INIT mysql
  2870. ---------------------------------------------------------------
  2871. [2023-12-25T17:52:10+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  2872. [运行时间:0.604083s] [吞吐率:1.66req/s] [内存消耗:4,292.05kb] [文件加载:158]
  2873. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2874. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2875. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2876. [ info ] [ ROUTE ] array (
  2877. )
  2878. [ info ] [ HEADER ] array (
  2879. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2',
  2880. 'accept-language' => 'zh-CN,zh;q=0.9',
  2881. 'accept-encoding' => 'gzip, deflate, br',
  2882. 'referer' => 'https://gaoyx.com/admin.html',
  2883. 'sec-fetch-dest' => 'empty',
  2884. 'sec-fetch-mode' => 'cors',
  2885. 'sec-fetch-site' => 'same-origin',
  2886. 'sec-ch-ua-platform' => '"Windows"',
  2887. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2888. 'sec-ch-ua-mobile' => '?0',
  2889. 'x-requested-with' => 'XMLHttpRequest',
  2890. 'accept' => '*/*',
  2891. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2892. 'connection' => 'keep-alive',
  2893. 'host' => 'gaoyx.com',
  2894. 'content-length' => '',
  2895. 'content-type' => '',
  2896. )
  2897. [ info ] [ PARAM ] array (
  2898. 'spm' => 'm-64-175-254',
  2899. )
  2900. [ info ] [ DB ] INIT mysql
  2901. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  2902. 0 => 'page',
  2903. 1 => 'list',
  2904. 2 => 'table',
  2905. 3 => 'app',
  2906. 4 => 'request',
  2907. 5 => 'csrf_state',
  2908. 6 => 'csrf_message',
  2909. 7 => 'title',
  2910. 8 => 'pagehtml',
  2911. ) ]
  2912. ---------------------------------------------------------------
  2913. [2023-12-25T17:52:56+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  2914. [运行时间:1.845025s] [吞吐率:0.54req/s] [内存消耗:14,910.87kb] [文件加载:337]
  2915. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2916. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2917. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2918. [ info ] [ ROUTE ] array (
  2919. )
  2920. [ info ] [ HEADER ] array (
  2921. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2',
  2922. 'accept-language' => 'zh-CN,zh;q=0.9',
  2923. 'accept-encoding' => 'gzip, deflate, br',
  2924. 'sec-fetch-dest' => 'document',
  2925. 'sec-fetch-user' => '?1',
  2926. 'sec-fetch-mode' => 'navigate',
  2927. 'sec-fetch-site' => 'none',
  2928. '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',
  2929. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2930. 'upgrade-insecure-requests' => '1',
  2931. 'sec-ch-ua-platform' => '"Windows"',
  2932. 'sec-ch-ua-mobile' => '?0',
  2933. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2934. 'connection' => 'keep-alive',
  2935. 'host' => 'gaoyx.com',
  2936. 'content-length' => '',
  2937. 'content-type' => '',
  2938. )
  2939. [ info ] [ PARAM ] array (
  2940. )
  2941. [ info ] [ DB ] INIT mysql
  2942. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  2943. 0 => 'app',
  2944. 1 => 'request',
  2945. 2 => 'csrf_state',
  2946. 3 => 'csrf_message',
  2947. 4 => 'title',
  2948. 5 => 'menus',
  2949. ) ]
  2950. ---------------------------------------------------------------
  2951. [2023-12-25T17:52:57+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  2952. [运行时间:0.502602s] [吞吐率:1.99req/s] [内存消耗:4,290.36kb] [文件加载:158]
  2953. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2954. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2955. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2956. [ info ] [ ROUTE ] array (
  2957. )
  2958. [ info ] [ HEADER ] array (
  2959. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtP61XvKYjDeQxSND3j0VcKw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifuEi6koBbAHQ5WffWtwRMZ44DRC3CygX0wN6-5MAvWeIlnTVPk3xgeFHIiril2lgPrcSiBXMr3O43OztHSVDZNUwSXxuC_rn0RC1g02wT5sgtPmNOCjwD7VxFJ6J-sI0O1BsfnjXRcPeIUZIX7Ude2',
  2960. 'accept-language' => 'zh-CN,zh;q=0.9',
  2961. 'accept-encoding' => 'gzip, deflate, br',
  2962. 'referer' => 'https://gaoyx.com/admin.html',
  2963. 'sec-fetch-dest' => 'empty',
  2964. 'sec-fetch-mode' => 'cors',
  2965. 'sec-fetch-site' => 'same-origin',
  2966. 'sec-ch-ua-platform' => '"Windows"',
  2967. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  2968. 'sec-ch-ua-mobile' => '?0',
  2969. 'x-requested-with' => 'XMLHttpRequest',
  2970. 'accept' => '*/*',
  2971. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  2972. 'connection' => 'keep-alive',
  2973. 'host' => 'gaoyx.com',
  2974. 'content-length' => '',
  2975. 'content-type' => '',
  2976. )
  2977. [ info ] [ PARAM ] array (
  2978. 'spm' => 'm-64-175-254',
  2979. )
  2980. [ info ] [ DB ] INIT mysql
  2981. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  2982. 0 => 'page',
  2983. 1 => 'list',
  2984. 2 => 'table',
  2985. 3 => 'app',
  2986. 4 => 'request',
  2987. 5 => 'csrf_state',
  2988. 6 => 'csrf_message',
  2989. 7 => 'title',
  2990. 8 => 'pagehtml',
  2991. ) ]
  2992. ---------------------------------------------------------------
  2993. [2023-12-25T17:53:39+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  2994. [运行时间:0.537196s] [吞吐率:1.86req/s] [内存消耗:4,312.30kb] [文件加载:158]
  2995. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  2996. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  2997. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  2998. [ info ] [ ROUTE ] array (
  2999. )
  3000. [ info ] [ HEADER ] array (
  3001. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtF6nLzvDUILGWqFGqqy+1X0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtPD9paAxfF25Pq2IUFxjetI4MzOnv55dM91tekpUo-THJgI-TwZRSse66SQeEnq4J_qBCWLrlvReNwV4Gw-Ow8dXWlq26G6jkh-afNjQPFU7X6NbBumTnmC1GtGrYDbn9NmSxWwp_x38VoZJtb5F2GUk_avWgPHqE1Lu2kkaXyjF',
  3002. 'accept-language' => 'zh-CN,zh;q=0.9',
  3003. 'accept-encoding' => 'gzip, deflate, br',
  3004. 'referer' => 'https://gaoyx.com/admin.html',
  3005. 'sec-fetch-dest' => 'empty',
  3006. 'sec-fetch-mode' => 'cors',
  3007. 'sec-fetch-site' => 'same-origin',
  3008. 'sec-ch-ua-platform' => '"Windows"',
  3009. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3010. 'sec-ch-ua-mobile' => '?0',
  3011. 'x-requested-with' => 'XMLHttpRequest',
  3012. 'accept' => '*/*',
  3013. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3014. 'connection' => 'keep-alive',
  3015. 'host' => 'gaoyx.com',
  3016. 'content-length' => '',
  3017. 'content-type' => '',
  3018. )
  3019. [ info ] [ PARAM ] array (
  3020. 'spm' => 'm-277-280-197',
  3021. )
  3022. [ info ] [ DB ] INIT mysql
  3023. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  3024. 0 => 'page',
  3025. 1 => 'list',
  3026. 2 => 'table',
  3027. 3 => 'app',
  3028. 4 => 'request',
  3029. 5 => 'csrf_state',
  3030. 6 => 'csrf_message',
  3031. 7 => 'title',
  3032. 8 => 'place_desc',
  3033. 9 => 'pagehtml',
  3034. ) ]
  3035. ---------------------------------------------------------------
  3036. [2023-12-25T17:56:29+08:00] 127.0.0.1 GET gaoyx.com/synth/bill_type/index.html?spm=m-307-308-309
  3037. [运行时间:0.406062s] [吞吐率:2.46req/s] [内存消耗:4,182.04kb] [文件加载:154]
  3038. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3039. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3040. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3041. [ info ] [ ROUTE ] array (
  3042. )
  3043. [ info ] [ HEADER ] array (
  3044. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtF6nLzvDUILGWqFGqqy+1X0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtPD9paAxfF25Pq2IUFxjetI4MzOnv55dM91tekpUo-THJgI-TwZRSse66SQeEnq4J_qBCWLrlvReNwV4Gw-Ow8dXWlq26G6jkh-afNjQPFU7X6NbBumTnmC1GtGrYDbn9NmSxWwp_x38VoZJtb5F2GUk_avWgPHqE1Lu2kkaXyjF',
  3045. 'accept-language' => 'zh-CN,zh;q=0.9',
  3046. 'accept-encoding' => 'gzip, deflate, br',
  3047. 'referer' => 'https://gaoyx.com/admin.html',
  3048. 'sec-fetch-dest' => 'empty',
  3049. 'sec-fetch-mode' => 'cors',
  3050. 'sec-fetch-site' => 'same-origin',
  3051. 'sec-ch-ua-platform' => '"Windows"',
  3052. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3053. 'sec-ch-ua-mobile' => '?0',
  3054. 'x-requested-with' => 'XMLHttpRequest',
  3055. 'accept' => '*/*',
  3056. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3057. 'connection' => 'keep-alive',
  3058. 'host' => 'gaoyx.com',
  3059. 'content-length' => '',
  3060. 'content-type' => '',
  3061. )
  3062. [ info ] [ PARAM ] array (
  3063. 'spm' => 'm-307-308-309',
  3064. )
  3065. [ info ] [ DB ] INIT mysql
  3066. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\synth\view\bill_type\index.html [ array (
  3067. 0 => 'list',
  3068. 1 => 'table',
  3069. 2 => 'app',
  3070. 3 => 'request',
  3071. 4 => 'csrf_state',
  3072. 5 => 'csrf_message',
  3073. 6 => 'title',
  3074. ) ]
  3075. ---------------------------------------------------------------
  3076. [2023-12-25T17:57:46+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  3077. [运行时间:1.643045s] [吞吐率:0.61req/s] [内存消耗:14,912.85kb] [文件加载:337]
  3078. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3079. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3080. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3081. [ info ] [ ROUTE ] array (
  3082. )
  3083. [ info ] [ HEADER ] array (
  3084. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtF6nLzvDUILGWqFGqqy+1X0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtPD9paAxfF25Pq2IUFxjetI4MzOnv55dM91tekpUo-THJgI-TwZRSse66SQeEnq4J_qBCWLrlvReNwV4Gw-Ow8dXWlq26G6jkh-afNjQPFU7X6NbBumTnmC1GtGrYDbn9NmSxWwp_x38VoZJtb5F2GUk_avWgPHqE1Lu2kkaXyjF',
  3085. 'accept-language' => 'zh-CN,zh;q=0.9',
  3086. 'accept-encoding' => 'gzip, deflate, br',
  3087. 'sec-fetch-dest' => 'document',
  3088. 'sec-fetch-user' => '?1',
  3089. 'sec-fetch-mode' => 'navigate',
  3090. 'sec-fetch-site' => 'same-origin',
  3091. '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',
  3092. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3093. 'upgrade-insecure-requests' => '1',
  3094. 'sec-ch-ua-platform' => '"Windows"',
  3095. 'sec-ch-ua-mobile' => '?0',
  3096. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3097. 'cache-control' => 'max-age=0',
  3098. 'connection' => 'keep-alive',
  3099. 'host' => 'gaoyx.com',
  3100. 'content-length' => '',
  3101. 'content-type' => '',
  3102. )
  3103. [ info ] [ PARAM ] array (
  3104. )
  3105. [ info ] [ DB ] INIT mysql
  3106. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  3107. 0 => 'app',
  3108. 1 => 'request',
  3109. 2 => 'csrf_state',
  3110. 3 => 'csrf_message',
  3111. 4 => 'title',
  3112. 5 => 'menus',
  3113. ) ]
  3114. ---------------------------------------------------------------
  3115. [2023-12-25T17:57:47+08:00] 127.0.0.1 GET gaoyx.com/synth/bill_type/index.html?spm=m-307-308-309
  3116. [运行时间:0.439819s] [吞吐率:2.27req/s] [内存消耗:4,182.67kb] [文件加载:154]
  3117. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3118. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3119. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3120. [ info ] [ ROUTE ] array (
  3121. )
  3122. [ info ] [ HEADER ] array (
  3123. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtF6nLzvDUILGWqFGqqy+1X0%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtPD9paAxfF25Pq2IUFxjetI4MzOnv55dM91tekpUo-THJgI-TwZRSse66SQeEnq4J_qBCWLrlvReNwV4Gw-Ow8dXWlq26G6jkh-afNjQPFU7X6NbBumTnmC1GtGrYDbn9NmSxWwp_x38VoZJtb5F2GUk_avWgPHqE1Lu2kkaXyjF',
  3124. 'accept-language' => 'zh-CN,zh;q=0.9',
  3125. 'accept-encoding' => 'gzip, deflate, br',
  3126. 'referer' => 'https://gaoyx.com/admin.html',
  3127. 'sec-fetch-dest' => 'empty',
  3128. 'sec-fetch-mode' => 'cors',
  3129. 'sec-fetch-site' => 'same-origin',
  3130. 'sec-ch-ua-platform' => '"Windows"',
  3131. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3132. 'sec-ch-ua-mobile' => '?0',
  3133. 'x-requested-with' => 'XMLHttpRequest',
  3134. 'accept' => '*/*',
  3135. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3136. 'connection' => 'keep-alive',
  3137. 'host' => 'gaoyx.com',
  3138. 'content-length' => '',
  3139. 'content-type' => '',
  3140. )
  3141. [ info ] [ PARAM ] array (
  3142. 'spm' => 'm-307-308-309',
  3143. )
  3144. [ info ] [ DB ] INIT mysql
  3145. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\synth\view\bill_type\index.html [ array (
  3146. 0 => 'list',
  3147. 1 => 'table',
  3148. 2 => 'app',
  3149. 3 => 'request',
  3150. 4 => 'csrf_state',
  3151. 5 => 'csrf_message',
  3152. 6 => 'title',
  3153. ) ]
  3154. ---------------------------------------------------------------
  3155. [2023-12-25T17:58:36+08:00] 127.0.0.1 GET gaoyx.com/admin/config/info.html?spm=m-2-4-11
  3156. [运行时间:0.046825s] [吞吐率:21.36req/s] [内存消耗:3,581.75kb] [文件加载:146]
  3157. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3158. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3159. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3160. [ info ] [ ROUTE ] array (
  3161. )
  3162. [ info ] [ HEADER ] array (
  3163. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtOgvbLO49xGDJA9E22ZqLWw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifyKP12wlk2p3iTBfZkKKb6dlWZOoTAnmbxwSJ2YWdPCy4Fz_w5wbMfKjx0oYdZ5LucuhGKVefun0PSLN1FN3ruReSvGSmaLPnjjBG2npUhcPTw_CYdZDEnlhX98k5kGHiTIlmiSIOifJ7BaHsTY1nK; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtPHHvnI9W1xedjQa8w+j7IM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDZUj8gb-lfbxzdbxq0vQddhNdu9SrRHLntHspvIozuyqGTeI5QASulUCjqlZGiGR1xEI9YN72JwNkhdFGDpV6OFfy_ZuxC1BGTysFlbi_05_MoXENJmehBgeujyNin5z6O3qaxDPxhoPhw58QkryxH9W9GzfyjXfI2ry3hVNHvA',
  3164. 'accept-language' => 'zh-CN,zh;q=0.9',
  3165. 'accept-encoding' => 'gzip, deflate, br',
  3166. 'referer' => 'https://gaoyx.com/admin.html',
  3167. 'sec-fetch-dest' => 'empty',
  3168. 'sec-fetch-mode' => 'cors',
  3169. 'sec-fetch-site' => 'same-origin',
  3170. 'sec-ch-ua-platform' => '"Windows"',
  3171. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3172. 'sec-ch-ua-mobile' => '?0',
  3173. 'x-requested-with' => 'XMLHttpRequest',
  3174. 'accept' => '*/*',
  3175. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3176. 'connection' => 'keep-alive',
  3177. 'host' => 'gaoyx.com',
  3178. 'content-length' => '',
  3179. 'content-type' => '',
  3180. )
  3181. [ info ] [ PARAM ] array (
  3182. 'spm' => 'm-2-4-11',
  3183. )
  3184. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\config\info.html [ array (
  3185. 0 => 'table',
  3186. 1 => 'ossPoints',
  3187. 2 => 'app',
  3188. 3 => 'request',
  3189. 4 => 'csrf_state',
  3190. 5 => 'csrf_message',
  3191. 6 => 'title',
  3192. ) ]
  3193. ---------------------------------------------------------------
  3194. [2023-12-25T17:58:37+08:00] 127.0.0.1 GET gaoyx.com/synth/bill_type/index.html?spm=m-307-308-309
  3195. [运行时间:0.443701s] [吞吐率:2.25req/s] [内存消耗:4,183.43kb] [文件加载:154]
  3196. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3197. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3198. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3199. [ info ] [ ROUTE ] array (
  3200. )
  3201. [ info ] [ HEADER ] array (
  3202. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtPHHvnI9W1xedjQa8w+j7IM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDZUj8gb-lfbxzdbxq0vQddhNdu9SrRHLntHspvIozuyqGTeI5QASulUCjqlZGiGR1xEI9YN72JwNkhdFGDpV6OFfy_ZuxC1BGTysFlbi_05_MoXENJmehBgeujyNin5z6O3qaxDPxhoPhw58QkryxH9W9GzfyjXfI2ry3hVNHvA',
  3203. 'accept-language' => 'zh-CN,zh;q=0.9',
  3204. 'accept-encoding' => 'gzip, deflate, br',
  3205. 'referer' => 'https://gaoyx.com/admin.html',
  3206. 'sec-fetch-dest' => 'empty',
  3207. 'sec-fetch-mode' => 'cors',
  3208. 'sec-fetch-site' => 'same-origin',
  3209. 'sec-ch-ua-platform' => '"Windows"',
  3210. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3211. 'sec-ch-ua-mobile' => '?0',
  3212. 'x-requested-with' => 'XMLHttpRequest',
  3213. 'accept' => '*/*',
  3214. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3215. 'connection' => 'keep-alive',
  3216. 'host' => 'gaoyx.com',
  3217. 'content-length' => '',
  3218. 'content-type' => '',
  3219. )
  3220. [ info ] [ PARAM ] array (
  3221. 'spm' => 'm-307-308-309',
  3222. )
  3223. [ info ] [ DB ] INIT mysql
  3224. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\synth\view\bill_type\index.html [ array (
  3225. 0 => 'list',
  3226. 1 => 'table',
  3227. 2 => 'app',
  3228. 3 => 'request',
  3229. 4 => 'csrf_state',
  3230. 5 => 'csrf_message',
  3231. 6 => 'title',
  3232. ) ]
  3233. ---------------------------------------------------------------
  3234. [2023-12-25T17:59:38+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  3235. [运行时间:1.657682s] [吞吐率:0.60req/s] [内存消耗:14,914.12kb] [文件加载:337]
  3236. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3237. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3238. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3239. [ info ] [ ROUTE ] array (
  3240. )
  3241. [ info ] [ HEADER ] array (
  3242. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtPHHvnI9W1xedjQa8w+j7IM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDZUj8gb-lfbxzdbxq0vQddhNdu9SrRHLntHspvIozuyqGTeI5QASulUCjqlZGiGR1xEI9YN72JwNkhdFGDpV6OFfy_ZuxC1BGTysFlbi_05_MoXENJmehBgeujyNin5z6O3qaxDPxhoPhw58QkryxH9W9GzfyjXfI2ry3hVNHvA',
  3243. 'accept-language' => 'zh-CN,zh;q=0.9',
  3244. 'accept-encoding' => 'gzip, deflate, br',
  3245. 'sec-fetch-dest' => 'document',
  3246. 'sec-fetch-user' => '?1',
  3247. 'sec-fetch-mode' => 'navigate',
  3248. 'sec-fetch-site' => 'same-origin',
  3249. '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',
  3250. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3251. 'upgrade-insecure-requests' => '1',
  3252. 'sec-ch-ua-platform' => '"Windows"',
  3253. 'sec-ch-ua-mobile' => '?0',
  3254. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3255. 'cache-control' => 'max-age=0',
  3256. 'connection' => 'keep-alive',
  3257. 'host' => 'gaoyx.com',
  3258. 'content-length' => '',
  3259. 'content-type' => '',
  3260. )
  3261. [ info ] [ PARAM ] array (
  3262. )
  3263. [ info ] [ DB ] INIT mysql
  3264. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  3265. 0 => 'app',
  3266. 1 => 'request',
  3267. 2 => 'csrf_state',
  3268. 3 => 'csrf_message',
  3269. 4 => 'title',
  3270. 5 => 'menus',
  3271. ) ]
  3272. ---------------------------------------------------------------
  3273. [2023-12-25T17:59:38+08:00] 127.0.0.1 GET gaoyx.com/synth/bill_type/index.html?spm=m-307-308-309
  3274. [运行时间:0.405016s] [吞吐率:2.47req/s] [内存消耗:4,183.92kb] [文件加载:154]
  3275. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3276. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3277. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3278. [ info ] [ ROUTE ] array (
  3279. )
  3280. [ info ] [ HEADER ] array (
  3281. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtPHHvnI9W1xedjQa8w+j7IM%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDZUj8gb-lfbxzdbxq0vQddhNdu9SrRHLntHspvIozuyqGTeI5QASulUCjqlZGiGR1xEI9YN72JwNkhdFGDpV6OFfy_ZuxC1BGTysFlbi_05_MoXENJmehBgeujyNin5z6O3qaxDPxhoPhw58QkryxH9W9GzfyjXfI2ry3hVNHvA',
  3282. 'accept-language' => 'zh-CN,zh;q=0.9',
  3283. 'accept-encoding' => 'gzip, deflate, br',
  3284. 'referer' => 'https://gaoyx.com/admin.html',
  3285. 'sec-fetch-dest' => 'empty',
  3286. 'sec-fetch-mode' => 'cors',
  3287. 'sec-fetch-site' => 'same-origin',
  3288. 'sec-ch-ua-platform' => '"Windows"',
  3289. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3290. 'sec-ch-ua-mobile' => '?0',
  3291. 'x-requested-with' => 'XMLHttpRequest',
  3292. 'accept' => '*/*',
  3293. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3294. 'connection' => 'keep-alive',
  3295. 'host' => 'gaoyx.com',
  3296. 'content-length' => '',
  3297. 'content-type' => '',
  3298. )
  3299. [ info ] [ PARAM ] array (
  3300. 'spm' => 'm-307-308-309',
  3301. )
  3302. [ info ] [ DB ] INIT mysql
  3303. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\synth\view\bill_type\index.html [ array (
  3304. 0 => 'list',
  3305. 1 => 'table',
  3306. 2 => 'app',
  3307. 3 => 'request',
  3308. 4 => 'csrf_state',
  3309. 5 => 'csrf_message',
  3310. 6 => 'title',
  3311. ) ]
  3312. ---------------------------------------------------------------
  3313. [2023-12-25T18:00:27+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  3314. [运行时间:0.553475s] [吞吐率:1.81req/s] [内存消耗:4,294.59kb] [文件加载:158]
  3315. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3316. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3317. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3318. [ info ] [ ROUTE ] array (
  3319. )
  3320. [ info ] [ HEADER ] array (
  3321. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf',
  3322. 'accept-language' => 'zh-CN,zh;q=0.9',
  3323. 'accept-encoding' => 'gzip, deflate, br',
  3324. 'referer' => 'https://gaoyx.com/admin.html',
  3325. 'sec-fetch-dest' => 'empty',
  3326. 'sec-fetch-mode' => 'cors',
  3327. 'sec-fetch-site' => 'same-origin',
  3328. 'sec-ch-ua-platform' => '"Windows"',
  3329. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3330. 'sec-ch-ua-mobile' => '?0',
  3331. 'x-requested-with' => 'XMLHttpRequest',
  3332. 'accept' => '*/*',
  3333. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3334. 'connection' => 'keep-alive',
  3335. 'host' => 'gaoyx.com',
  3336. 'content-length' => '',
  3337. 'content-type' => '',
  3338. )
  3339. [ info ] [ PARAM ] array (
  3340. 'spm' => 'm-64-175-254',
  3341. )
  3342. [ info ] [ DB ] INIT mysql
  3343. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  3344. 0 => 'page',
  3345. 1 => 'list',
  3346. 2 => 'table',
  3347. 3 => 'app',
  3348. 4 => 'request',
  3349. 5 => 'csrf_state',
  3350. 6 => 'csrf_message',
  3351. 7 => 'title',
  3352. 8 => 'pagehtml',
  3353. ) ]
  3354. ---------------------------------------------------------------
  3355. [2023-12-25T18:04:11+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  3356. [运行时间:0.502503s] [吞吐率:1.99req/s] [内存消耗:4,315.01kb] [文件加载:158]
  3357. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3358. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3359. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3360. [ info ] [ ROUTE ] array (
  3361. )
  3362. [ info ] [ HEADER ] array (
  3363. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf',
  3364. 'accept-language' => 'zh-CN,zh;q=0.9',
  3365. 'accept-encoding' => 'gzip, deflate, br',
  3366. 'referer' => 'https://gaoyx.com/admin.html',
  3367. 'sec-fetch-dest' => 'empty',
  3368. 'sec-fetch-mode' => 'cors',
  3369. 'sec-fetch-site' => 'same-origin',
  3370. 'sec-ch-ua-platform' => '"Windows"',
  3371. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3372. 'sec-ch-ua-mobile' => '?0',
  3373. 'x-requested-with' => 'XMLHttpRequest',
  3374. 'accept' => '*/*',
  3375. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3376. 'connection' => 'keep-alive',
  3377. 'host' => 'gaoyx.com',
  3378. 'content-length' => '',
  3379. 'content-type' => '',
  3380. )
  3381. [ info ] [ PARAM ] array (
  3382. 'spm' => 'm-277-280-197',
  3383. )
  3384. [ info ] [ DB ] INIT mysql
  3385. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  3386. 0 => 'page',
  3387. 1 => 'list',
  3388. 2 => 'table',
  3389. 3 => 'app',
  3390. 4 => 'request',
  3391. 5 => 'csrf_state',
  3392. 6 => 'csrf_message',
  3393. 7 => 'title',
  3394. 8 => 'place_desc',
  3395. 9 => 'pagehtml',
  3396. ) ]
  3397. ---------------------------------------------------------------
  3398. [2023-12-25T18:16:43+08:00] 127.0.0.1 GET gaoyx.com/operate/contact/index.html?spm=m-277-280-298
  3399. [运行时间:0.597502s] [吞吐率:1.67req/s] [内存消耗:4,316.45kb] [文件加载:158]
  3400. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3401. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3402. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3403. [ info ] [ ROUTE ] array (
  3404. )
  3405. [ info ] [ HEADER ] array (
  3406. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf',
  3407. 'accept-language' => 'zh-CN,zh;q=0.9',
  3408. 'accept-encoding' => 'gzip, deflate, br',
  3409. 'referer' => 'https://gaoyx.com/admin.html',
  3410. 'sec-fetch-dest' => 'empty',
  3411. 'sec-fetch-mode' => 'cors',
  3412. 'sec-fetch-site' => 'same-origin',
  3413. 'sec-ch-ua-platform' => '"Windows"',
  3414. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3415. 'sec-ch-ua-mobile' => '?0',
  3416. 'x-requested-with' => 'XMLHttpRequest',
  3417. 'accept' => '*/*',
  3418. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3419. 'connection' => 'keep-alive',
  3420. 'host' => 'gaoyx.com',
  3421. 'content-length' => '',
  3422. 'content-type' => '',
  3423. )
  3424. [ info ] [ PARAM ] array (
  3425. 'spm' => 'm-277-280-298',
  3426. )
  3427. [ info ] [ DB ] INIT mysql
  3428. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\contact\index.html [ array (
  3429. 0 => 'page',
  3430. 1 => 'list',
  3431. 2 => 'table',
  3432. 3 => 'app',
  3433. 4 => 'request',
  3434. 5 => 'csrf_state',
  3435. 6 => 'csrf_message',
  3436. 7 => 'title',
  3437. 8 => 'pagehtml',
  3438. ) ]
  3439. ---------------------------------------------------------------
  3440. [2023-12-25T18:17:12+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  3441. [运行时间:0.515413s] [吞吐率:1.94req/s] [内存消耗:4,290.36kb] [文件加载:158]
  3442. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3443. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3444. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3445. [ info ] [ ROUTE ] array (
  3446. )
  3447. [ info ] [ HEADER ] array (
  3448. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf',
  3449. 'accept-language' => 'zh-CN,zh;q=0.9',
  3450. 'accept-encoding' => 'gzip, deflate, br',
  3451. 'referer' => 'https://gaoyx.com/admin.html',
  3452. 'sec-fetch-dest' => 'empty',
  3453. 'sec-fetch-mode' => 'cors',
  3454. 'sec-fetch-site' => 'same-origin',
  3455. 'sec-ch-ua-platform' => '"Windows"',
  3456. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3457. 'sec-ch-ua-mobile' => '?0',
  3458. 'x-requested-with' => 'XMLHttpRequest',
  3459. 'accept' => '*/*',
  3460. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3461. 'connection' => 'keep-alive',
  3462. 'host' => 'gaoyx.com',
  3463. 'content-length' => '',
  3464. 'content-type' => '',
  3465. )
  3466. [ info ] [ PARAM ] array (
  3467. 'spm' => 'm-64-175-254',
  3468. )
  3469. [ info ] [ DB ] INIT mysql
  3470. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  3471. 0 => 'page',
  3472. 1 => 'list',
  3473. 2 => 'table',
  3474. 3 => 'app',
  3475. 4 => 'request',
  3476. 5 => 'csrf_state',
  3477. 6 => 'csrf_message',
  3478. 7 => 'title',
  3479. 8 => 'pagehtml',
  3480. ) ]
  3481. ---------------------------------------------------------------
  3482. [2023-12-25T18:18:12+08:00] 127.0.0.1 GET gaoyx.com/nutrition/datum_cate/index.html?spm=m-140-165-166
  3483. [运行时间:0.397770s] [吞吐率:2.51req/s] [内存消耗:4,184.27kb] [文件加载:154]
  3484. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3485. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3486. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3487. [ info ] [ ROUTE ] array (
  3488. )
  3489. [ info ] [ HEADER ] array (
  3490. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf',
  3491. 'accept-language' => 'zh-CN,zh;q=0.9',
  3492. 'accept-encoding' => 'gzip, deflate, br',
  3493. 'referer' => 'https://gaoyx.com/admin.html',
  3494. 'sec-fetch-dest' => 'empty',
  3495. 'sec-fetch-mode' => 'cors',
  3496. 'sec-fetch-site' => 'same-origin',
  3497. 'sec-ch-ua-platform' => '"Windows"',
  3498. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3499. 'sec-ch-ua-mobile' => '?0',
  3500. 'x-requested-with' => 'XMLHttpRequest',
  3501. 'accept' => '*/*',
  3502. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3503. 'connection' => 'keep-alive',
  3504. 'host' => 'gaoyx.com',
  3505. 'content-length' => '',
  3506. 'content-type' => '',
  3507. )
  3508. [ info ] [ PARAM ] array (
  3509. 'spm' => 'm-140-165-166',
  3510. )
  3511. [ info ] [ DB ] INIT mysql
  3512. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\nutrition\view\datum_cate\index.html [ array (
  3513. 0 => 'list',
  3514. 1 => 'table',
  3515. 2 => 'app',
  3516. 3 => 'request',
  3517. 4 => 'csrf_state',
  3518. 5 => 'csrf_message',
  3519. 6 => 'title',
  3520. ) ]
  3521. ---------------------------------------------------------------
  3522. [2023-12-25T18:18:14+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  3523. [运行时间:0.552113s] [吞吐率:1.81req/s] [内存消耗:4,314.34kb] [文件加载:158]
  3524. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3525. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3526. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3527. [ info ] [ ROUTE ] array (
  3528. )
  3529. [ info ] [ HEADER ] array (
  3530. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf',
  3531. 'accept-language' => 'zh-CN,zh;q=0.9',
  3532. 'accept-encoding' => 'gzip, deflate, br',
  3533. 'referer' => 'https://gaoyx.com/admin.html',
  3534. 'sec-fetch-dest' => 'empty',
  3535. 'sec-fetch-mode' => 'cors',
  3536. 'sec-fetch-site' => 'same-origin',
  3537. 'sec-ch-ua-platform' => '"Windows"',
  3538. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3539. 'sec-ch-ua-mobile' => '?0',
  3540. 'x-requested-with' => 'XMLHttpRequest',
  3541. 'accept' => '*/*',
  3542. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3543. 'connection' => 'keep-alive',
  3544. 'host' => 'gaoyx.com',
  3545. 'content-length' => '',
  3546. 'content-type' => '',
  3547. )
  3548. [ info ] [ PARAM ] array (
  3549. 'spm' => 'm-277-280-197',
  3550. )
  3551. [ info ] [ DB ] INIT mysql
  3552. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  3553. 0 => 'page',
  3554. 1 => 'list',
  3555. 2 => 'table',
  3556. 3 => 'app',
  3557. 4 => 'request',
  3558. 5 => 'csrf_state',
  3559. 6 => 'csrf_message',
  3560. 7 => 'title',
  3561. 8 => 'place_desc',
  3562. 9 => 'pagehtml',
  3563. ) ]
  3564. ---------------------------------------------------------------
  3565. [2023-12-25T18:18:19+08:00] 127.0.0.1 GET gaoyx.com/operate/forum/index.html?spm=m-277-278-279
  3566. [运行时间:3.668035s] [吞吐率:0.27req/s] [内存消耗:5,251.41kb] [文件加载:167]
  3567. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3568. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3569. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3570. [ info ] [ ROUTE ] array (
  3571. )
  3572. [ info ] [ HEADER ] array (
  3573. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf; page-limit=20',
  3574. 'accept-language' => 'zh-CN,zh;q=0.9',
  3575. 'accept-encoding' => 'gzip, deflate, br',
  3576. 'referer' => 'https://gaoyx.com/admin.html',
  3577. 'sec-fetch-dest' => 'empty',
  3578. 'sec-fetch-mode' => 'cors',
  3579. 'sec-fetch-site' => 'same-origin',
  3580. 'sec-ch-ua-platform' => '"Windows"',
  3581. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3582. 'sec-ch-ua-mobile' => '?0',
  3583. 'x-requested-with' => 'XMLHttpRequest',
  3584. 'accept' => '*/*',
  3585. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3586. 'connection' => 'keep-alive',
  3587. 'host' => 'gaoyx.com',
  3588. 'content-length' => '',
  3589. 'content-type' => '',
  3590. )
  3591. [ info ] [ PARAM ] array (
  3592. 'spm' => 'm-277-278-279',
  3593. )
  3594. [ info ] [ DB ] INIT mysql
  3595. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\forum\index.html [ array (
  3596. 0 => 'page',
  3597. 1 => 'list',
  3598. 2 => 'table',
  3599. 3 => 'app',
  3600. 4 => 'request',
  3601. 5 => 'csrf_state',
  3602. 6 => 'csrf_message',
  3603. 7 => 'title',
  3604. 8 => 'pagehtml',
  3605. ) ]
  3606. ---------------------------------------------------------------
  3607. [2023-12-25T18:18:55+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  3608. [运行时间:0.848428s] [吞吐率:1.18req/s] [内存消耗:14,188.23kb] [文件加载:337]
  3609. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3610. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3611. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3612. [ info ] [ ROUTE ] array (
  3613. )
  3614. [ info ] [ HEADER ] array (
  3615. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf',
  3616. 'accept-language' => 'zh-CN,zh;q=0.9',
  3617. 'accept-encoding' => 'gzip, deflate, br',
  3618. 'sec-fetch-dest' => 'document',
  3619. 'sec-fetch-user' => '?1',
  3620. 'sec-fetch-mode' => 'navigate',
  3621. 'sec-fetch-site' => 'same-origin',
  3622. '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',
  3623. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3624. 'upgrade-insecure-requests' => '1',
  3625. 'sec-ch-ua-platform' => '"Windows"',
  3626. 'sec-ch-ua-mobile' => '?0',
  3627. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3628. 'cache-control' => 'max-age=0',
  3629. 'connection' => 'keep-alive',
  3630. 'host' => 'gaoyx.com',
  3631. 'content-length' => '',
  3632. 'content-type' => '',
  3633. )
  3634. [ info ] [ PARAM ] array (
  3635. )
  3636. [ info ] [ DB ] INIT mysql
  3637. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  3638. 0 => 'app',
  3639. 1 => 'request',
  3640. 2 => 'csrf_state',
  3641. 3 => 'csrf_message',
  3642. 4 => 'title',
  3643. 5 => 'menus',
  3644. ) ]
  3645. ---------------------------------------------------------------
  3646. [2023-12-25T18:18:59+08:00] 127.0.0.1 GET gaoyx.com/operate/forum/index.html?spm=m-277-278-279
  3647. [运行时间:2.996710s] [吞吐率:0.33req/s] [内存消耗:5,244.60kb] [文件加载:167]
  3648. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3649. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3650. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3651. [ info ] [ ROUTE ] array (
  3652. )
  3653. [ info ] [ HEADER ] array (
  3654. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtFgNh48t3MfzecmFkPb6HZw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtDLsKrTXllxef-dpm3Gyu3Bon6Izs31d-i880TTlRumvdAlvCYPUWnY9dcwNuTWMXHrbzMhPI55Rlk-Bjt7SprsxiQEQ9qPr3bfCPkNOzCT_qOFjyaC-g9fYXHVq2YW8HXMUpT-NuExtYfUXn_Ew-Hgu0X4_r6E9DzQBu2Z79Dvf',
  3655. 'accept-language' => 'zh-CN,zh;q=0.9',
  3656. 'accept-encoding' => 'gzip, deflate, br',
  3657. 'referer' => 'https://gaoyx.com/admin.html',
  3658. 'sec-fetch-dest' => 'empty',
  3659. 'sec-fetch-mode' => 'cors',
  3660. 'sec-fetch-site' => 'same-origin',
  3661. 'sec-ch-ua-platform' => '"Windows"',
  3662. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3663. 'sec-ch-ua-mobile' => '?0',
  3664. 'x-requested-with' => 'XMLHttpRequest',
  3665. 'accept' => '*/*',
  3666. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3667. 'connection' => 'keep-alive',
  3668. 'host' => 'gaoyx.com',
  3669. 'content-length' => '',
  3670. 'content-type' => '',
  3671. )
  3672. [ info ] [ PARAM ] array (
  3673. 'spm' => 'm-277-278-279',
  3674. )
  3675. [ info ] [ DB ] INIT mysql
  3676. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\forum\index.html [ array (
  3677. 0 => 'page',
  3678. 1 => 'list',
  3679. 2 => 'table',
  3680. 3 => 'app',
  3681. 4 => 'request',
  3682. 5 => 'csrf_state',
  3683. 6 => 'csrf_message',
  3684. 7 => 'title',
  3685. 8 => 'pagehtml',
  3686. ) ]
  3687. ---------------------------------------------------------------
  3688. [2023-12-25T18:20:16+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  3689. [运行时间:1.627766s] [吞吐率:0.61req/s] [内存消耗:14,915.97kb] [文件加载:337]
  3690. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3691. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3692. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3693. [ info ] [ ROUTE ] array (
  3694. )
  3695. [ info ] [ HEADER ] array (
  3696. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtInPFOv6aD20VR0cJ7CG1eU%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtGPMo1hwOEFMOlTrhZzkeYc96ABOEsC7r0Z9DbeNFkOYVcn8ZtknISJ9WrkOCxBYSQjpHCpdoxYdrbog2lt70d-eZJX4t5hHjU1tyM7YJwPf4cQtgdSnb5FpbcqLvAqWruNL4imJ-ZNUBEv_lZjHbcGwjSeHBiehmhta8O5v3s7z',
  3697. 'accept-language' => 'zh-CN,zh;q=0.9',
  3698. 'accept-encoding' => 'gzip, deflate, br',
  3699. 'sec-fetch-dest' => 'document',
  3700. 'sec-fetch-user' => '?1',
  3701. 'sec-fetch-mode' => 'navigate',
  3702. 'sec-fetch-site' => 'same-origin',
  3703. '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',
  3704. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3705. 'upgrade-insecure-requests' => '1',
  3706. 'sec-ch-ua-platform' => '"Windows"',
  3707. 'sec-ch-ua-mobile' => '?0',
  3708. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3709. 'cache-control' => 'max-age=0',
  3710. 'connection' => 'keep-alive',
  3711. 'host' => 'gaoyx.com',
  3712. 'content-length' => '',
  3713. 'content-type' => '',
  3714. )
  3715. [ info ] [ PARAM ] array (
  3716. )
  3717. [ info ] [ DB ] INIT mysql
  3718. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  3719. 0 => 'app',
  3720. 1 => 'request',
  3721. 2 => 'csrf_state',
  3722. 3 => 'csrf_message',
  3723. 4 => 'title',
  3724. 5 => 'menus',
  3725. ) ]
  3726. ---------------------------------------------------------------
  3727. [2023-12-25T18:20:19+08:00] 127.0.0.1 GET gaoyx.com/operate/forum/index.html?spm=m-277-278-279
  3728. [运行时间:3.017468s] [吞吐率:0.33req/s] [内存消耗:5,245.38kb] [文件加载:167]
  3729. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3730. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3731. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3732. [ info ] [ ROUTE ] array (
  3733. )
  3734. [ info ] [ HEADER ] array (
  3735. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtInPFOv6aD20VR0cJ7CG1eU%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtGPMo1hwOEFMOlTrhZzkeYc96ABOEsC7r0Z9DbeNFkOYVcn8ZtknISJ9WrkOCxBYSQjpHCpdoxYdrbog2lt70d-eZJX4t5hHjU1tyM7YJwPf4cQtgdSnb5FpbcqLvAqWruNL4imJ-ZNUBEv_lZjHbcGwjSeHBiehmhta8O5v3s7z',
  3736. 'accept-language' => 'zh-CN,zh;q=0.9',
  3737. 'accept-encoding' => 'gzip, deflate, br',
  3738. 'referer' => 'https://gaoyx.com/admin.html',
  3739. 'sec-fetch-dest' => 'empty',
  3740. 'sec-fetch-mode' => 'cors',
  3741. 'sec-fetch-site' => 'same-origin',
  3742. 'sec-ch-ua-platform' => '"Windows"',
  3743. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3744. 'sec-ch-ua-mobile' => '?0',
  3745. 'x-requested-with' => 'XMLHttpRequest',
  3746. 'accept' => '*/*',
  3747. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3748. 'connection' => 'keep-alive',
  3749. 'host' => 'gaoyx.com',
  3750. 'content-length' => '',
  3751. 'content-type' => '',
  3752. )
  3753. [ info ] [ PARAM ] array (
  3754. 'spm' => 'm-277-278-279',
  3755. )
  3756. [ info ] [ DB ] INIT mysql
  3757. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\forum\index.html [ array (
  3758. 0 => 'page',
  3759. 1 => 'list',
  3760. 2 => 'table',
  3761. 3 => 'app',
  3762. 4 => 'request',
  3763. 5 => 'csrf_state',
  3764. 6 => 'csrf_message',
  3765. 7 => 'title',
  3766. 8 => 'pagehtml',
  3767. ) ]
  3768. ---------------------------------------------------------------
  3769. [2023-12-25T18:20:49+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  3770. [运行时间:0.780203s] [吞吐率:1.28req/s] [内存消耗:14,189.80kb] [文件加载:337]
  3771. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3772. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3773. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3774. [ info ] [ ROUTE ] array (
  3775. )
  3776. [ info ] [ HEADER ] array (
  3777. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtHcACHaf58QShW5uQJlgnuI%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkS5qozBLlG-h6qX0RfYBRzAop01Zkx0Dm0VYJKRkRboe-QrA_3dCOUhE-3G7KMwv8MuDqATskANZdNcDQcJZul4yMsrq91i2TtinSwhDaq_5MPwaEdMZ4-e7MrKNU42OAiwQ2GFBeACuk8r7X2Hj40B',
  3778. 'accept-language' => 'zh-CN,zh;q=0.9',
  3779. 'accept-encoding' => 'gzip, deflate, br',
  3780. 'sec-fetch-dest' => 'document',
  3781. 'sec-fetch-user' => '?1',
  3782. 'sec-fetch-mode' => 'navigate',
  3783. 'sec-fetch-site' => 'same-origin',
  3784. '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',
  3785. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3786. 'upgrade-insecure-requests' => '1',
  3787. 'sec-ch-ua-platform' => '"Windows"',
  3788. 'sec-ch-ua-mobile' => '?0',
  3789. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3790. 'cache-control' => 'max-age=0',
  3791. 'connection' => 'keep-alive',
  3792. 'host' => 'gaoyx.com',
  3793. 'content-length' => '',
  3794. 'content-type' => '',
  3795. )
  3796. [ info ] [ PARAM ] array (
  3797. )
  3798. [ info ] [ DB ] INIT mysql
  3799. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  3800. 0 => 'app',
  3801. 1 => 'request',
  3802. 2 => 'csrf_state',
  3803. 3 => 'csrf_message',
  3804. 4 => 'title',
  3805. 5 => 'menus',
  3806. ) ]
  3807. ---------------------------------------------------------------
  3808. [2023-12-25T18:20:52+08:00] 127.0.0.1 GET gaoyx.com/operate/forum/index.html?spm=m-277-278-279
  3809. [运行时间:2.986283s] [吞吐率:0.33req/s] [内存消耗:5,245.87kb] [文件加载:167]
  3810. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3811. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3812. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3813. [ info ] [ ROUTE ] array (
  3814. )
  3815. [ info ] [ HEADER ] array (
  3816. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtHcACHaf58QShW5uQJlgnuI%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkS5qozBLlG-h6qX0RfYBRzAop01Zkx0Dm0VYJKRkRboe-QrA_3dCOUhE-3G7KMwv8MuDqATskANZdNcDQcJZul4yMsrq91i2TtinSwhDaq_5MPwaEdMZ4-e7MrKNU42OAiwQ2GFBeACuk8r7X2Hj40B',
  3817. 'accept-language' => 'zh-CN,zh;q=0.9',
  3818. 'accept-encoding' => 'gzip, deflate, br',
  3819. 'referer' => 'https://gaoyx.com/admin.html',
  3820. 'sec-fetch-dest' => 'empty',
  3821. 'sec-fetch-mode' => 'cors',
  3822. 'sec-fetch-site' => 'same-origin',
  3823. 'sec-ch-ua-platform' => '"Windows"',
  3824. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3825. 'sec-ch-ua-mobile' => '?0',
  3826. 'x-requested-with' => 'XMLHttpRequest',
  3827. 'accept' => '*/*',
  3828. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3829. 'connection' => 'keep-alive',
  3830. 'host' => 'gaoyx.com',
  3831. 'content-length' => '',
  3832. 'content-type' => '',
  3833. )
  3834. [ info ] [ PARAM ] array (
  3835. 'spm' => 'm-277-278-279',
  3836. )
  3837. [ info ] [ DB ] INIT mysql
  3838. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\forum\index.html [ array (
  3839. 0 => 'page',
  3840. 1 => 'list',
  3841. 2 => 'table',
  3842. 3 => 'app',
  3843. 4 => 'request',
  3844. 5 => 'csrf_state',
  3845. 6 => 'csrf_message',
  3846. 7 => 'title',
  3847. 8 => 'pagehtml',
  3848. ) ]
  3849. ---------------------------------------------------------------
  3850. [2023-12-25T18:22:16+08:00] 127.0.0.1 GET gaoyx.com/mall/express_company/index.html?spm=m-136-196-200
  3851. [运行时间:0.491734s] [吞吐率:2.03req/s] [内存消耗:4,319.36kb] [文件加载:158]
  3852. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3853. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3854. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3855. [ info ] [ ROUTE ] array (
  3856. )
  3857. [ info ] [ HEADER ] array (
  3858. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U',
  3859. 'accept-language' => 'zh-CN,zh;q=0.9',
  3860. 'accept-encoding' => 'gzip, deflate, br',
  3861. 'referer' => 'https://gaoyx.com/admin.html',
  3862. 'sec-fetch-dest' => 'empty',
  3863. 'sec-fetch-mode' => 'cors',
  3864. 'sec-fetch-site' => 'same-origin',
  3865. 'sec-ch-ua-platform' => '"Windows"',
  3866. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3867. 'sec-ch-ua-mobile' => '?0',
  3868. 'x-requested-with' => 'XMLHttpRequest',
  3869. 'accept' => '*/*',
  3870. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3871. 'connection' => 'keep-alive',
  3872. 'host' => 'gaoyx.com',
  3873. 'content-length' => '',
  3874. 'content-type' => '',
  3875. )
  3876. [ info ] [ PARAM ] array (
  3877. 'spm' => 'm-136-196-200',
  3878. )
  3879. [ info ] [ DB ] INIT mysql
  3880. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\express_company\index.html [ array (
  3881. 0 => 'page',
  3882. 1 => 'list',
  3883. 2 => 'table',
  3884. 3 => 'app',
  3885. 4 => 'request',
  3886. 5 => 'csrf_state',
  3887. 6 => 'csrf_message',
  3888. 7 => 'title',
  3889. 8 => 'pagehtml',
  3890. ) ]
  3891. ---------------------------------------------------------------
  3892. [2023-12-25T18:22:21+08:00] 127.0.0.1 GET gaoyx.com/nutrition/datum_cate/index.html?spm=m-140-165-166
  3893. [运行时间:0.414002s] [吞吐率:2.42req/s] [内存消耗:4,190.38kb] [文件加载:154]
  3894. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3895. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3896. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3897. [ info ] [ ROUTE ] array (
  3898. )
  3899. [ info ] [ HEADER ] array (
  3900. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U; page-limit=20',
  3901. 'accept-language' => 'zh-CN,zh;q=0.9',
  3902. 'accept-encoding' => 'gzip, deflate, br',
  3903. 'referer' => 'https://gaoyx.com/admin.html',
  3904. 'sec-fetch-dest' => 'empty',
  3905. 'sec-fetch-mode' => 'cors',
  3906. 'sec-fetch-site' => 'same-origin',
  3907. 'sec-ch-ua-platform' => '"Windows"',
  3908. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3909. 'sec-ch-ua-mobile' => '?0',
  3910. 'x-requested-with' => 'XMLHttpRequest',
  3911. 'accept' => '*/*',
  3912. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3913. 'connection' => 'keep-alive',
  3914. 'host' => 'gaoyx.com',
  3915. 'content-length' => '',
  3916. 'content-type' => '',
  3917. )
  3918. [ info ] [ PARAM ] array (
  3919. 'spm' => 'm-140-165-166',
  3920. )
  3921. [ info ] [ DB ] INIT mysql
  3922. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\nutrition\view\datum_cate\index.html [ array (
  3923. 0 => 'list',
  3924. 1 => 'table',
  3925. 2 => 'app',
  3926. 3 => 'request',
  3927. 4 => 'csrf_state',
  3928. 5 => 'csrf_message',
  3929. 6 => 'title',
  3930. ) ]
  3931. ---------------------------------------------------------------
  3932. [2023-12-25T18:22:26+08:00] 127.0.0.1 GET gaoyx.com/order/level_order/index.html?spm=m-150-253
  3933. [运行时间:0.543998s] [吞吐率:1.84req/s] [内存消耗:4,391.52kb] [文件加载:158]
  3934. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3935. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3936. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3937. [ info ] [ ROUTE ] array (
  3938. )
  3939. [ info ] [ HEADER ] array (
  3940. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U; page-limit=20',
  3941. 'accept-language' => 'zh-CN,zh;q=0.9',
  3942. 'accept-encoding' => 'gzip, deflate, br',
  3943. 'referer' => 'https://gaoyx.com/admin.html',
  3944. 'sec-fetch-dest' => 'empty',
  3945. 'sec-fetch-mode' => 'cors',
  3946. 'sec-fetch-site' => 'same-origin',
  3947. 'sec-ch-ua-platform' => '"Windows"',
  3948. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3949. 'sec-ch-ua-mobile' => '?0',
  3950. 'x-requested-with' => 'XMLHttpRequest',
  3951. 'accept' => '*/*',
  3952. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3953. 'connection' => 'keep-alive',
  3954. 'host' => 'gaoyx.com',
  3955. 'content-length' => '',
  3956. 'content-type' => '',
  3957. )
  3958. [ info ] [ PARAM ] array (
  3959. 'spm' => 'm-150-253',
  3960. )
  3961. [ info ] [ DB ] INIT mysql
  3962. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\order\view\level_order\index.html [ array (
  3963. 0 => 'page',
  3964. 1 => 'list',
  3965. 2 => 'table',
  3966. 3 => 'app',
  3967. 4 => 'request',
  3968. 5 => 'csrf_state',
  3969. 6 => 'csrf_message',
  3970. 7 => 'title',
  3971. 8 => 'pagehtml',
  3972. ) ]
  3973. ---------------------------------------------------------------
  3974. [2023-12-25T18:22:31+08:00] 127.0.0.1 GET gaoyx.com/synth/bill_type/index.html?spm=m-307-308-309
  3975. [运行时间:0.500794s] [吞吐率:2.00req/s] [内存消耗:4,190.72kb] [文件加载:154]
  3976. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  3977. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  3978. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  3979. [ info ] [ ROUTE ] array (
  3980. )
  3981. [ info ] [ HEADER ] array (
  3982. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U; page-limit=20',
  3983. 'accept-language' => 'zh-CN,zh;q=0.9',
  3984. 'accept-encoding' => 'gzip, deflate, br',
  3985. 'referer' => 'https://gaoyx.com/admin.html',
  3986. 'sec-fetch-dest' => 'empty',
  3987. 'sec-fetch-mode' => 'cors',
  3988. 'sec-fetch-site' => 'same-origin',
  3989. 'sec-ch-ua-platform' => '"Windows"',
  3990. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  3991. 'sec-ch-ua-mobile' => '?0',
  3992. 'x-requested-with' => 'XMLHttpRequest',
  3993. 'accept' => '*/*',
  3994. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  3995. 'connection' => 'keep-alive',
  3996. 'host' => 'gaoyx.com',
  3997. 'content-length' => '',
  3998. 'content-type' => '',
  3999. )
  4000. [ info ] [ PARAM ] array (
  4001. 'spm' => 'm-307-308-309',
  4002. )
  4003. [ info ] [ DB ] INIT mysql
  4004. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\synth\view\bill_type\index.html [ array (
  4005. 0 => 'list',
  4006. 1 => 'table',
  4007. 2 => 'app',
  4008. 3 => 'request',
  4009. 4 => 'csrf_state',
  4010. 5 => 'csrf_message',
  4011. 6 => 'title',
  4012. ) ]
  4013. ---------------------------------------------------------------
  4014. [2023-12-25T18:22:37+08:00] 127.0.0.1 GET gaoyx.com/admin/config/info.html?spm=m-2-4-11
  4015. [运行时间:1.083469s] [吞吐率:0.92req/s] [内存消耗:5,303.99kb] [文件加载:151]
  4016. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4017. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4018. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4019. [ info ] [ ROUTE ] array (
  4020. )
  4021. [ info ] [ HEADER ] array (
  4022. 'cookie' => 'SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtOgvbLO49xGDJA9E22ZqLWw%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtKWdKnYVbMj7J14tba8F_ifyKP12wlk2p3iTBfZkKKb6dlWZOoTAnmbxwSJ2YWdPCy4Fz_w5wbMfKjx0oYdZ5LucuhGKVefun0PSLN1FN3ruReSvGSmaLPnjjBG2npUhcPTw_CYdZDEnlhX98k5kGHiTIlmiSIOifJ7BaHsTY1nK; PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U; page-limit=20',
  4023. 'accept-language' => 'zh-CN,zh;q=0.9',
  4024. 'accept-encoding' => 'gzip, deflate, br',
  4025. 'referer' => 'https://gaoyx.com/admin.html',
  4026. 'sec-fetch-dest' => 'empty',
  4027. 'sec-fetch-mode' => 'cors',
  4028. 'sec-fetch-site' => 'same-origin',
  4029. 'sec-ch-ua-platform' => '"Windows"',
  4030. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4031. 'sec-ch-ua-mobile' => '?0',
  4032. 'x-requested-with' => 'XMLHttpRequest',
  4033. 'accept' => '*/*',
  4034. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4035. 'connection' => 'keep-alive',
  4036. 'host' => 'gaoyx.com',
  4037. 'content-length' => '',
  4038. 'content-type' => '',
  4039. )
  4040. [ info ] [ PARAM ] array (
  4041. 'spm' => 'm-2-4-11',
  4042. )
  4043. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\config\info.html [ array (
  4044. 0 => 'table',
  4045. 1 => 'ossPoints',
  4046. 2 => 'app',
  4047. 3 => 'request',
  4048. 4 => 'csrf_state',
  4049. 5 => 'csrf_message',
  4050. 6 => 'title',
  4051. ) ]
  4052. [ info ] [ DB ] INIT mysql
  4053. ---------------------------------------------------------------
  4054. [2023-12-25T18:22:40+08:00] 127.0.0.1 GET gaoyx.com/nutrition/datum_cate/index.html?spm=m-140-165-166
  4055. [运行时间:0.412882s] [吞吐率:2.42req/s] [内存消耗:4,194.57kb] [文件加载:154]
  4056. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4057. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4058. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4059. [ info ] [ ROUTE ] array (
  4060. )
  4061. [ info ] [ HEADER ] array (
  4062. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U; page-limit=20',
  4063. 'accept-language' => 'zh-CN,zh;q=0.9',
  4064. 'accept-encoding' => 'gzip, deflate, br',
  4065. 'referer' => 'https://gaoyx.com/admin.html',
  4066. 'sec-fetch-dest' => 'empty',
  4067. 'sec-fetch-mode' => 'cors',
  4068. 'sec-fetch-site' => 'same-origin',
  4069. 'sec-ch-ua-platform' => '"Windows"',
  4070. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4071. 'sec-ch-ua-mobile' => '?0',
  4072. 'x-requested-with' => 'XMLHttpRequest',
  4073. 'accept' => '*/*',
  4074. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4075. 'connection' => 'keep-alive',
  4076. 'host' => 'gaoyx.com',
  4077. 'content-length' => '',
  4078. 'content-type' => '',
  4079. )
  4080. [ info ] [ PARAM ] array (
  4081. 'spm' => 'm-140-165-166',
  4082. )
  4083. [ info ] [ DB ] INIT mysql
  4084. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\nutrition\view\datum_cate\index.html [ array (
  4085. 0 => 'list',
  4086. 1 => 'table',
  4087. 2 => 'app',
  4088. 3 => 'request',
  4089. 4 => 'csrf_state',
  4090. 5 => 'csrf_message',
  4091. 6 => 'title',
  4092. ) ]
  4093. ---------------------------------------------------------------
  4094. [2023-12-25T18:22:41+08:00] 127.0.0.1 GET gaoyx.com/mall/express_company/index.html?spm=m-136-196-200
  4095. [运行时间:0.539999s] [吞吐率:1.85req/s] [内存消耗:4,325.58kb] [文件加载:158]
  4096. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4097. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4098. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4099. [ info ] [ ROUTE ] array (
  4100. )
  4101. [ info ] [ HEADER ] array (
  4102. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U; page-limit=20',
  4103. 'accept-language' => 'zh-CN,zh;q=0.9',
  4104. 'accept-encoding' => 'gzip, deflate, br',
  4105. 'referer' => 'https://gaoyx.com/admin.html',
  4106. 'sec-fetch-dest' => 'empty',
  4107. 'sec-fetch-mode' => 'cors',
  4108. 'sec-fetch-site' => 'same-origin',
  4109. 'sec-ch-ua-platform' => '"Windows"',
  4110. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4111. 'sec-ch-ua-mobile' => '?0',
  4112. 'x-requested-with' => 'XMLHttpRequest',
  4113. 'accept' => '*/*',
  4114. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4115. 'connection' => 'keep-alive',
  4116. 'host' => 'gaoyx.com',
  4117. 'content-length' => '',
  4118. 'content-type' => '',
  4119. )
  4120. [ info ] [ PARAM ] array (
  4121. 'spm' => 'm-136-196-200',
  4122. )
  4123. [ info ] [ DB ] INIT mysql
  4124. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\express_company\index.html [ array (
  4125. 0 => 'page',
  4126. 1 => 'list',
  4127. 2 => 'table',
  4128. 3 => 'app',
  4129. 4 => 'request',
  4130. 5 => 'csrf_state',
  4131. 6 => 'csrf_message',
  4132. 7 => 'title',
  4133. 8 => 'pagehtml',
  4134. ) ]
  4135. ---------------------------------------------------------------
  4136. [2023-12-25T18:22:42+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  4137. [运行时间:0.492777s] [吞吐率:2.03req/s] [内存消耗:4,325.66kb] [文件加载:158]
  4138. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4139. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4140. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4141. [ info ] [ ROUTE ] array (
  4142. )
  4143. [ info ] [ HEADER ] array (
  4144. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U; page-limit=20',
  4145. 'accept-language' => 'zh-CN,zh;q=0.9',
  4146. 'accept-encoding' => 'gzip, deflate, br',
  4147. 'referer' => 'https://gaoyx.com/admin.html',
  4148. 'sec-fetch-dest' => 'empty',
  4149. 'sec-fetch-mode' => 'cors',
  4150. 'sec-fetch-site' => 'same-origin',
  4151. 'sec-ch-ua-platform' => '"Windows"',
  4152. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4153. 'sec-ch-ua-mobile' => '?0',
  4154. 'x-requested-with' => 'XMLHttpRequest',
  4155. 'accept' => '*/*',
  4156. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4157. 'connection' => 'keep-alive',
  4158. 'host' => 'gaoyx.com',
  4159. 'content-length' => '',
  4160. 'content-type' => '',
  4161. )
  4162. [ info ] [ PARAM ] array (
  4163. 'spm' => 'm-277-280-197',
  4164. )
  4165. [ info ] [ DB ] INIT mysql
  4166. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  4167. 0 => 'page',
  4168. 1 => 'list',
  4169. 2 => 'table',
  4170. 3 => 'app',
  4171. 4 => 'request',
  4172. 5 => 'csrf_state',
  4173. 6 => 'csrf_message',
  4174. 7 => 'title',
  4175. 8 => 'place_desc',
  4176. 9 => 'pagehtml',
  4177. ) ]
  4178. ---------------------------------------------------------------
  4179. [2023-12-25T18:22:45+08:00] 127.0.0.1 GET gaoyx.com/operate/forum/index.html?spm=m-277-278-279
  4180. [运行时间:2.880200s] [吞吐率:0.35req/s] [内存消耗:5,254.87kb] [文件加载:167]
  4181. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4182. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4183. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4184. [ info ] [ ROUTE ] array (
  4185. )
  4186. [ info ] [ HEADER ] array (
  4187. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U; page-limit=20',
  4188. 'accept-language' => 'zh-CN,zh;q=0.9',
  4189. 'accept-encoding' => 'gzip, deflate, br',
  4190. 'referer' => 'https://gaoyx.com/admin.html',
  4191. 'sec-fetch-dest' => 'empty',
  4192. 'sec-fetch-mode' => 'cors',
  4193. 'sec-fetch-site' => 'same-origin',
  4194. 'sec-ch-ua-platform' => '"Windows"',
  4195. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4196. 'sec-ch-ua-mobile' => '?0',
  4197. 'x-requested-with' => 'XMLHttpRequest',
  4198. 'accept' => '*/*',
  4199. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4200. 'connection' => 'keep-alive',
  4201. 'host' => 'gaoyx.com',
  4202. 'content-length' => '',
  4203. 'content-type' => '',
  4204. )
  4205. [ info ] [ PARAM ] array (
  4206. 'spm' => 'm-277-278-279',
  4207. )
  4208. [ info ] [ DB ] INIT mysql
  4209. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\forum\index.html [ array (
  4210. 0 => 'page',
  4211. 1 => 'list',
  4212. 2 => 'table',
  4213. 3 => 'app',
  4214. 4 => 'request',
  4215. 5 => 'csrf_state',
  4216. 6 => 'csrf_message',
  4217. 7 => 'title',
  4218. 8 => 'pagehtml',
  4219. ) ]
  4220. ---------------------------------------------------------------
  4221. [2023-12-26T08:39:55+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  4222. [运行时间:1.640571s] [吞吐率:0.61req/s] [内存消耗:14,926.63kb] [文件加载:337]
  4223. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4224. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4225. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4226. [ info ] [ ROUTE ] array (
  4227. )
  4228. [ info ] [ HEADER ] array (
  4229. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U',
  4230. 'accept-language' => 'zh-CN,zh;q=0.9',
  4231. 'accept-encoding' => 'gzip, deflate, br',
  4232. 'sec-fetch-dest' => 'document',
  4233. 'sec-fetch-user' => '?1',
  4234. 'sec-fetch-mode' => 'navigate',
  4235. 'sec-fetch-site' => 'same-origin',
  4236. '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',
  4237. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4238. 'upgrade-insecure-requests' => '1',
  4239. 'sec-ch-ua-platform' => '"Windows"',
  4240. 'sec-ch-ua-mobile' => '?0',
  4241. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4242. 'cache-control' => 'max-age=0',
  4243. 'connection' => 'keep-alive',
  4244. 'host' => 'gaoyx.com',
  4245. 'content-length' => '',
  4246. 'content-type' => '',
  4247. )
  4248. [ info ] [ PARAM ] array (
  4249. )
  4250. [ info ] [ DB ] INIT mysql
  4251. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  4252. 0 => 'app',
  4253. 1 => 'request',
  4254. 2 => 'csrf_state',
  4255. 3 => 'csrf_message',
  4256. 4 => 'title',
  4257. 5 => 'menus',
  4258. ) ]
  4259. ---------------------------------------------------------------
  4260. [2023-12-26T08:39:56+08:00] 127.0.0.1 GET gaoyx.com/upload/decb0fe26fa3f486/b3f6521bf29403c8.png
  4261. [运行时间:0.040914s] [吞吐率:24.44req/s] [内存消耗:2,360.63kb] [文件加载:130]
  4262. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4263. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4264. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4265. ---------------------------------------------------------------
  4266. [2023-12-26T08:39:58+08:00] 127.0.0.1 GET gaoyx.com/operate/forum/index.html?spm=m-277-278-279
  4267. [运行时间:2.954170s] [吞吐率:0.34req/s] [内存消耗:5,245.15kb] [文件加载:167]
  4268. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4269. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4270. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4271. [ info ] [ ROUTE ] array (
  4272. )
  4273. [ info ] [ HEADER ] array (
  4274. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMPEwEcCTFaScg7eLj3e6Nk%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtBTriw4NPk9FVvWoYC2fmkRtchQcqqAXyoKnqbr_V6_GPznpGlcneZcrA8WpdcSmoEqLqGGhL5SsYuyskej_MkyX-03qVk0iIWhVMJ9VhPWaffgbhfTZvmRmP5nMIj0RS0-yUE88S3YhEO1NXo-ByRNCzA3f0mZmJExdTwWrWg4U',
  4275. 'accept-language' => 'zh-CN,zh;q=0.9',
  4276. 'accept-encoding' => 'gzip, deflate, br',
  4277. 'referer' => 'https://gaoyx.com/admin.html',
  4278. 'sec-fetch-dest' => 'empty',
  4279. 'sec-fetch-mode' => 'cors',
  4280. 'sec-fetch-site' => 'same-origin',
  4281. 'sec-ch-ua-platform' => '"Windows"',
  4282. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4283. 'sec-ch-ua-mobile' => '?0',
  4284. 'x-requested-with' => 'XMLHttpRequest',
  4285. 'accept' => '*/*',
  4286. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4287. 'connection' => 'keep-alive',
  4288. 'host' => 'gaoyx.com',
  4289. 'content-length' => '',
  4290. 'content-type' => '',
  4291. )
  4292. [ info ] [ PARAM ] array (
  4293. 'spm' => 'm-277-278-279',
  4294. )
  4295. [ info ] [ DB ] INIT mysql
  4296. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\forum\index.html [ array (
  4297. 0 => 'page',
  4298. 1 => 'list',
  4299. 2 => 'table',
  4300. 3 => 'app',
  4301. 4 => 'request',
  4302. 5 => 'csrf_state',
  4303. 6 => 'csrf_message',
  4304. 7 => 'title',
  4305. 8 => 'pagehtml',
  4306. ) ]
  4307. ---------------------------------------------------------------
  4308. [2023-12-26T10:21:51+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  4309. [运行时间:0.567688s] [吞吐率:1.76req/s] [内存消耗:4,289.90kb] [文件加载:158]
  4310. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4311. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4312. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4313. [ info ] [ ROUTE ] array (
  4314. )
  4315. [ info ] [ HEADER ] array (
  4316. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK',
  4317. 'accept-language' => 'zh-CN,zh;q=0.9',
  4318. 'accept-encoding' => 'gzip, deflate, br',
  4319. 'referer' => 'https://gaoyx.com/admin.html',
  4320. 'sec-fetch-dest' => 'empty',
  4321. 'sec-fetch-mode' => 'cors',
  4322. 'sec-fetch-site' => 'same-origin',
  4323. 'sec-ch-ua-platform' => '"Windows"',
  4324. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4325. 'sec-ch-ua-mobile' => '?0',
  4326. 'x-requested-with' => 'XMLHttpRequest',
  4327. 'accept' => '*/*',
  4328. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4329. 'connection' => 'keep-alive',
  4330. 'host' => 'gaoyx.com',
  4331. 'content-length' => '',
  4332. 'content-type' => '',
  4333. )
  4334. [ info ] [ PARAM ] array (
  4335. 'spm' => 'm-64-175-254',
  4336. )
  4337. [ info ] [ DB ] INIT mysql
  4338. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  4339. 0 => 'page',
  4340. 1 => 'list',
  4341. 2 => 'table',
  4342. 3 => 'app',
  4343. 4 => 'request',
  4344. 5 => 'csrf_state',
  4345. 6 => 'csrf_message',
  4346. 7 => 'title',
  4347. 8 => 'pagehtml',
  4348. ) ]
  4349. ---------------------------------------------------------------
  4350. [2023-12-26T10:21:58+08:00] 127.0.0.1 GET gaoyx.com/user/member/index.html?spm=m-64-175-176
  4351. [运行时间:5.750307s] [吞吐率:0.17req/s] [内存消耗:4,916.44kb] [文件加载:168]
  4352. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4353. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4354. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4355. [ info ] [ ROUTE ] array (
  4356. )
  4357. [ info ] [ HEADER ] array (
  4358. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK; page-limit=20',
  4359. 'accept-language' => 'zh-CN,zh;q=0.9',
  4360. 'accept-encoding' => 'gzip, deflate, br',
  4361. 'referer' => 'https://gaoyx.com/admin.html',
  4362. 'sec-fetch-dest' => 'empty',
  4363. 'sec-fetch-mode' => 'cors',
  4364. 'sec-fetch-site' => 'same-origin',
  4365. 'sec-ch-ua-platform' => '"Windows"',
  4366. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4367. 'sec-ch-ua-mobile' => '?0',
  4368. 'x-requested-with' => 'XMLHttpRequest',
  4369. 'accept' => '*/*',
  4370. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4371. 'connection' => 'keep-alive',
  4372. 'host' => 'gaoyx.com',
  4373. 'content-length' => '',
  4374. 'content-type' => '',
  4375. )
  4376. [ info ] [ PARAM ] array (
  4377. 'spm' => 'm-64-175-176',
  4378. )
  4379. [ info ] [ DB ] INIT mysql
  4380. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\index.html [ array (
  4381. 0 => 'page',
  4382. 1 => 'list',
  4383. 2 => 'table',
  4384. 3 => 'app',
  4385. 4 => 'request',
  4386. 5 => 'csrf_state',
  4387. 6 => 'csrf_message',
  4388. 7 => 'search_url',
  4389. 8 => 'title',
  4390. 9 => 'tag_arr',
  4391. 10 => 'level_arr',
  4392. 11 => 'pagehtml',
  4393. ) ]
  4394. ---------------------------------------------------------------
  4395. [2023-12-26T10:22:02+08:00] 127.0.0.1 GET gaoyx.com/user/member/facility.html?user_id=520&spm=m-64-175-176&open_type=modal
  4396. [运行时间:0.420185s] [吞吐率:2.38req/s] [内存消耗:4,550.23kb] [文件加载:157]
  4397. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4398. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4399. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4400. [ info ] [ ROUTE ] array (
  4401. )
  4402. [ info ] [ HEADER ] array (
  4403. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK; page-limit=20',
  4404. 'accept-language' => 'zh-CN,zh;q=0.9',
  4405. 'accept-encoding' => 'gzip, deflate, br',
  4406. 'referer' => 'https://gaoyx.com/admin.html',
  4407. 'sec-fetch-dest' => 'empty',
  4408. 'sec-fetch-mode' => 'cors',
  4409. 'sec-fetch-site' => 'same-origin',
  4410. 'sec-ch-ua-platform' => '"Windows"',
  4411. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4412. 'sec-ch-ua-mobile' => '?0',
  4413. 'x-requested-with' => 'XMLHttpRequest',
  4414. 'accept' => '*/*',
  4415. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4416. 'connection' => 'keep-alive',
  4417. 'host' => 'gaoyx.com',
  4418. 'content-length' => '',
  4419. 'content-type' => '',
  4420. )
  4421. [ info ] [ PARAM ] array (
  4422. 'user_id' => '520',
  4423. 'spm' => 'm-64-175-176',
  4424. 'open_type' => 'modal',
  4425. )
  4426. [ info ] [ DB ] INIT mysql
  4427. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\facility.html [ array (
  4428. 0 => 'list',
  4429. 1 => 'user_id',
  4430. 2 => 'table',
  4431. 3 => 'app',
  4432. 4 => 'request',
  4433. 5 => 'csrf_state',
  4434. 6 => 'csrf_message',
  4435. ) ]
  4436. ---------------------------------------------------------------
  4437. [2023-12-26T10:22:14+08:00] 127.0.0.1 GET gaoyx.com/user/member/index.html?spm=m-64-175-176&name=&phone=18905497965&create_at=&account_type=0&level_id=0&label_id=0
  4438. [运行时间:1.660769s] [吞吐率:0.60req/s] [内存消耗:4,829.14kb] [文件加载:168]
  4439. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4440. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4441. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4442. [ info ] [ ROUTE ] array (
  4443. )
  4444. [ info ] [ HEADER ] array (
  4445. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK; page-limit=20',
  4446. 'accept-language' => 'zh-CN,zh;q=0.9',
  4447. 'accept-encoding' => 'gzip, deflate, br',
  4448. 'referer' => 'https://gaoyx.com/admin.html',
  4449. 'sec-fetch-dest' => 'empty',
  4450. 'sec-fetch-mode' => 'cors',
  4451. 'sec-fetch-site' => 'same-origin',
  4452. 'sec-ch-ua-platform' => '"Windows"',
  4453. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4454. 'sec-ch-ua-mobile' => '?0',
  4455. 'x-requested-with' => 'XMLHttpRequest',
  4456. 'accept' => '*/*',
  4457. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4458. 'connection' => 'keep-alive',
  4459. 'host' => 'gaoyx.com',
  4460. 'content-length' => '',
  4461. 'content-type' => '',
  4462. )
  4463. [ info ] [ PARAM ] array (
  4464. 'spm' => 'm-64-175-176',
  4465. 'name' => '',
  4466. 'phone' => '18905497965',
  4467. 'create_at' => '',
  4468. 'account_type' => '0',
  4469. 'level_id' => '0',
  4470. 'label_id' => '0',
  4471. )
  4472. [ info ] [ DB ] INIT mysql
  4473. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\index.html [ array (
  4474. 0 => 'page',
  4475. 1 => 'list',
  4476. 2 => 'table',
  4477. 3 => 'app',
  4478. 4 => 'request',
  4479. 5 => 'csrf_state',
  4480. 6 => 'csrf_message',
  4481. 7 => 'search_url',
  4482. 8 => 'title',
  4483. 9 => 'tag_arr',
  4484. 10 => 'level_arr',
  4485. 11 => 'pagehtml',
  4486. ) ]
  4487. ---------------------------------------------------------------
  4488. [2023-12-26T10:22:16+08:00] 127.0.0.1 GET gaoyx.com/user/member/facility.html?user_id=479&spm=m-64-175-176&open_type=modal
  4489. [运行时间:0.445258s] [吞吐率:2.25req/s] [内存消耗:4,551.13kb] [文件加载:157]
  4490. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4491. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4492. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4493. [ info ] [ ROUTE ] array (
  4494. )
  4495. [ info ] [ HEADER ] array (
  4496. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK; page-limit=20',
  4497. 'accept-language' => 'zh-CN,zh;q=0.9',
  4498. 'accept-encoding' => 'gzip, deflate, br',
  4499. 'referer' => 'https://gaoyx.com/admin.html',
  4500. 'sec-fetch-dest' => 'empty',
  4501. 'sec-fetch-mode' => 'cors',
  4502. 'sec-fetch-site' => 'same-origin',
  4503. 'sec-ch-ua-platform' => '"Windows"',
  4504. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4505. 'sec-ch-ua-mobile' => '?0',
  4506. 'x-requested-with' => 'XMLHttpRequest',
  4507. 'accept' => '*/*',
  4508. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4509. 'connection' => 'keep-alive',
  4510. 'host' => 'gaoyx.com',
  4511. 'content-length' => '',
  4512. 'content-type' => '',
  4513. )
  4514. [ info ] [ PARAM ] array (
  4515. 'user_id' => '479',
  4516. 'spm' => 'm-64-175-176',
  4517. 'open_type' => 'modal',
  4518. )
  4519. [ info ] [ DB ] INIT mysql
  4520. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\facility.html [ array (
  4521. 0 => 'list',
  4522. 1 => 'user_id',
  4523. 2 => 'table',
  4524. 3 => 'app',
  4525. 4 => 'request',
  4526. 5 => 'csrf_state',
  4527. 6 => 'csrf_message',
  4528. ) ]
  4529. ---------------------------------------------------------------
  4530. [2023-12-26T10:22:21+08:00] 127.0.0.1 POST gaoyx.com/user/member/facility.html?user_id=479&spm=m-64-175-176&open_type=modal
  4531. [运行时间:2.255196s] [吞吐率:0.44req/s] [内存消耗:4,104.55kb] [文件加载:149]
  4532. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4533. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4534. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4535. [ info ] [ ROUTE ] array (
  4536. )
  4537. [ info ] [ HEADER ] array (
  4538. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK; page-limit=20',
  4539. 'accept-language' => 'zh-CN,zh;q=0.9',
  4540. 'accept-encoding' => 'gzip, deflate, br',
  4541. 'referer' => 'https://gaoyx.com/admin.html',
  4542. 'sec-fetch-dest' => 'empty',
  4543. 'sec-fetch-mode' => 'cors',
  4544. 'sec-fetch-site' => 'same-origin',
  4545. 'origin' => 'https://gaoyx.com',
  4546. 'sec-ch-ua-platform' => '"Windows"',
  4547. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4548. 'sec-ch-ua-mobile' => '?0',
  4549. 'x-requested-with' => 'XMLHttpRequest',
  4550. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  4551. 'accept' => '*/*',
  4552. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4553. 'content-length' => '59',
  4554. 'connection' => 'keep-alive',
  4555. 'host' => 'gaoyx.com',
  4556. )
  4557. [ info ] [ PARAM ] array (
  4558. 'user_id' => '479',
  4559. 'spm' => 'm-64-175-176',
  4560. 'open_type' => 'modal',
  4561. 'facility_1' => '',
  4562. 'facility_2' => '',
  4563. 'facility_3' => '',
  4564. 'facility_4' => '',
  4565. )
  4566. [ info ] [ DB ] INIT mysql
  4567. ---------------------------------------------------------------
  4568. [2023-12-26T10:22:25+08:00] 127.0.0.1 GET gaoyx.com/user/member/index.html?spm=m-64-175-176&name=&phone=18905497965&create_at=&account_type=0&level_id=0&label_id=0
  4569. [运行时间:1.490253s] [吞吐率:0.67req/s] [内存消耗:4,829.80kb] [文件加载:168]
  4570. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4571. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4572. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4573. [ info ] [ ROUTE ] array (
  4574. )
  4575. [ info ] [ HEADER ] array (
  4576. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK; page-limit=20',
  4577. 'accept-language' => 'zh-CN,zh;q=0.9',
  4578. 'accept-encoding' => 'gzip, deflate, br',
  4579. 'referer' => 'https://gaoyx.com/admin.html',
  4580. 'sec-fetch-dest' => 'empty',
  4581. 'sec-fetch-mode' => 'cors',
  4582. 'sec-fetch-site' => 'same-origin',
  4583. 'sec-ch-ua-platform' => '"Windows"',
  4584. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4585. 'sec-ch-ua-mobile' => '?0',
  4586. 'x-requested-with' => 'XMLHttpRequest',
  4587. 'accept' => '*/*',
  4588. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4589. 'connection' => 'keep-alive',
  4590. 'host' => 'gaoyx.com',
  4591. 'content-length' => '',
  4592. 'content-type' => '',
  4593. )
  4594. [ info ] [ PARAM ] array (
  4595. 'spm' => 'm-64-175-176',
  4596. 'name' => '',
  4597. 'phone' => '18905497965',
  4598. 'create_at' => '',
  4599. 'account_type' => '0',
  4600. 'level_id' => '0',
  4601. 'label_id' => '0',
  4602. )
  4603. [ info ] [ DB ] INIT mysql
  4604. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\index.html [ array (
  4605. 0 => 'page',
  4606. 1 => 'list',
  4607. 2 => 'table',
  4608. 3 => 'app',
  4609. 4 => 'request',
  4610. 5 => 'csrf_state',
  4611. 6 => 'csrf_message',
  4612. 7 => 'search_url',
  4613. 8 => 'title',
  4614. 9 => 'tag_arr',
  4615. 10 => 'level_arr',
  4616. 11 => 'pagehtml',
  4617. ) ]
  4618. ---------------------------------------------------------------
  4619. [2023-12-26T10:22:43+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  4620. [运行时间:1.287879s] [吞吐率:0.78req/s] [内存消耗:14,912.85kb] [文件加载:337]
  4621. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4622. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4623. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4624. [ info ] [ ROUTE ] array (
  4625. )
  4626. [ info ] [ HEADER ] array (
  4627. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK; page-limit=20',
  4628. 'accept-language' => 'zh-CN,zh;q=0.9',
  4629. 'accept-encoding' => 'gzip, deflate, br',
  4630. 'sec-fetch-dest' => 'document',
  4631. 'sec-fetch-user' => '?1',
  4632. 'sec-fetch-mode' => 'navigate',
  4633. 'sec-fetch-site' => 'same-origin',
  4634. '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',
  4635. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4636. 'upgrade-insecure-requests' => '1',
  4637. 'sec-ch-ua-platform' => '"Windows"',
  4638. 'sec-ch-ua-mobile' => '?0',
  4639. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4640. 'cache-control' => 'max-age=0',
  4641. 'connection' => 'keep-alive',
  4642. 'host' => 'gaoyx.com',
  4643. 'content-length' => '',
  4644. 'content-type' => '',
  4645. )
  4646. [ info ] [ PARAM ] array (
  4647. )
  4648. [ info ] [ DB ] INIT mysql
  4649. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  4650. 0 => 'app',
  4651. 1 => 'request',
  4652. 2 => 'csrf_state',
  4653. 3 => 'csrf_message',
  4654. 4 => 'title',
  4655. 5 => 'menus',
  4656. ) ]
  4657. ---------------------------------------------------------------
  4658. [2023-12-26T10:22:44+08:00] 127.0.0.1 GET gaoyx.com/user/member/index.html?spm=m-64-175-176&name=&phone=18905497965&create_at=&account_type=0&level_id=0&label_id=0
  4659. [运行时间:1.321462s] [吞吐率:0.76req/s] [内存消耗:4,830.44kb] [文件加载:168]
  4660. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4661. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4662. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4663. [ info ] [ ROUTE ] array (
  4664. )
  4665. [ info ] [ HEADER ] array (
  4666. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtMxfweCyIvc1SMjPc43EAO4%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMmBiZ56jucVx8KqLJSPZ9k-A-KpHEJ6lzsTfuPMSlch7eMHHnBcTQXnJRUanVUyP9_kvmBHp0krTSuyECuQwuKgLx5crAJXetRTwruSypePptvEwQaOgVxcxO9wnoxMIMHTqg4bpAYEiHbYiBX1jXXc8G3r_UHqNCDNFlnkRhSK; page-limit=20',
  4667. 'accept-language' => 'zh-CN,zh;q=0.9',
  4668. 'accept-encoding' => 'gzip, deflate, br',
  4669. 'referer' => 'https://gaoyx.com/admin.html',
  4670. 'sec-fetch-dest' => 'empty',
  4671. 'sec-fetch-mode' => 'cors',
  4672. 'sec-fetch-site' => 'same-origin',
  4673. 'sec-ch-ua-platform' => '"Windows"',
  4674. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4675. 'sec-ch-ua-mobile' => '?0',
  4676. 'x-requested-with' => 'XMLHttpRequest',
  4677. 'accept' => '*/*',
  4678. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4679. 'connection' => 'keep-alive',
  4680. 'host' => 'gaoyx.com',
  4681. 'content-length' => '',
  4682. 'content-type' => '',
  4683. )
  4684. [ info ] [ PARAM ] array (
  4685. 'spm' => 'm-64-175-176',
  4686. 'name' => '',
  4687. 'phone' => '18905497965',
  4688. 'create_at' => '',
  4689. 'account_type' => '0',
  4690. 'level_id' => '0',
  4691. 'label_id' => '0',
  4692. )
  4693. [ info ] [ DB ] INIT mysql
  4694. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\index.html [ array (
  4695. 0 => 'page',
  4696. 1 => 'list',
  4697. 2 => 'table',
  4698. 3 => 'app',
  4699. 4 => 'request',
  4700. 5 => 'csrf_state',
  4701. 6 => 'csrf_message',
  4702. 7 => 'search_url',
  4703. 8 => 'title',
  4704. 9 => 'tag_arr',
  4705. 10 => 'level_arr',
  4706. 11 => 'pagehtml',
  4707. ) ]
  4708. ---------------------------------------------------------------
  4709. [2023-12-26T10:23:30+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  4710. [运行时间:0.789766s] [吞吐率:1.27req/s] [内存消耗:14,186.86kb] [文件加载:337]
  4711. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4712. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4713. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4714. [ info ] [ ROUTE ] array (
  4715. )
  4716. [ info ] [ HEADER ] array (
  4717. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtJIjcdeG0LN1sH2FQNRBuXo%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMTMQ2gkwa7jS5lD4FcekpvX86S3hIVtanwUs2WjfGmac4sT6dVOATSE3JoAfkaI04_HNTud0GgT0p-4p1zAw2oGFbhBxz3IQI61G2gjRcN1vnra5ShvPU2_oZ7yBYB99MOKCddnDPoYOnfG8MxufYU-LJyNjj0xKf9sPg1xELPP',
  4718. 'accept-language' => 'zh-CN,zh;q=0.9',
  4719. 'accept-encoding' => 'gzip, deflate, br',
  4720. 'sec-fetch-dest' => 'document',
  4721. 'sec-fetch-user' => '?1',
  4722. 'sec-fetch-mode' => 'navigate',
  4723. 'sec-fetch-site' => 'same-origin',
  4724. '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',
  4725. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4726. 'upgrade-insecure-requests' => '1',
  4727. 'sec-ch-ua-platform' => '"Windows"',
  4728. 'sec-ch-ua-mobile' => '?0',
  4729. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4730. 'cache-control' => 'max-age=0',
  4731. 'connection' => 'keep-alive',
  4732. 'host' => 'gaoyx.com',
  4733. 'content-length' => '',
  4734. 'content-type' => '',
  4735. )
  4736. [ info ] [ PARAM ] array (
  4737. )
  4738. [ info ] [ DB ] INIT mysql
  4739. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  4740. 0 => 'app',
  4741. 1 => 'request',
  4742. 2 => 'csrf_state',
  4743. 3 => 'csrf_message',
  4744. 4 => 'title',
  4745. 5 => 'menus',
  4746. ) ]
  4747. ---------------------------------------------------------------
  4748. [2023-12-26T10:23:31+08:00] 127.0.0.1 GET gaoyx.com/user/member/index.html?spm=m-64-175-176&name=&phone=18905497965&create_at=&account_type=0&level_id=0&label_id=0
  4749. [运行时间:1.403773s] [吞吐率:0.71req/s] [内存消耗:4,831.22kb] [文件加载:168]
  4750. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4751. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4752. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4753. [ info ] [ ROUTE ] array (
  4754. )
  4755. [ info ] [ HEADER ] array (
  4756. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtJIjcdeG0LN1sH2FQNRBuXo%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtMTMQ2gkwa7jS5lD4FcekpvX86S3hIVtanwUs2WjfGmac4sT6dVOATSE3JoAfkaI04_HNTud0GgT0p-4p1zAw2oGFbhBxz3IQI61G2gjRcN1vnra5ShvPU2_oZ7yBYB99MOKCddnDPoYOnfG8MxufYU-LJyNjj0xKf9sPg1xELPP',
  4757. 'accept-language' => 'zh-CN,zh;q=0.9',
  4758. 'accept-encoding' => 'gzip, deflate, br',
  4759. 'referer' => 'https://gaoyx.com/admin.html',
  4760. 'sec-fetch-dest' => 'empty',
  4761. 'sec-fetch-mode' => 'cors',
  4762. 'sec-fetch-site' => 'same-origin',
  4763. 'sec-ch-ua-platform' => '"Windows"',
  4764. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4765. 'sec-ch-ua-mobile' => '?0',
  4766. 'x-requested-with' => 'XMLHttpRequest',
  4767. 'accept' => '*/*',
  4768. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4769. 'connection' => 'keep-alive',
  4770. 'host' => 'gaoyx.com',
  4771. 'content-length' => '',
  4772. 'content-type' => '',
  4773. )
  4774. [ info ] [ PARAM ] array (
  4775. 'spm' => 'm-64-175-176',
  4776. 'name' => '',
  4777. 'phone' => '18905497965',
  4778. 'create_at' => '',
  4779. 'account_type' => '0',
  4780. 'level_id' => '0',
  4781. 'label_id' => '0',
  4782. )
  4783. [ info ] [ DB ] INIT mysql
  4784. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\index.html [ array (
  4785. 0 => 'page',
  4786. 1 => 'list',
  4787. 2 => 'table',
  4788. 3 => 'app',
  4789. 4 => 'request',
  4790. 5 => 'csrf_state',
  4791. 6 => 'csrf_message',
  4792. 7 => 'search_url',
  4793. 8 => 'title',
  4794. 9 => 'tag_arr',
  4795. 10 => 'level_arr',
  4796. 11 => 'pagehtml',
  4797. ) ]
  4798. ---------------------------------------------------------------
  4799. [2023-12-26T10:23:40+08:00] 127.0.0.1 GET gaoyx.com/user/member/index.html?spm=m-64-175-176&name=&phone=&create_at=&account_type=0&level_id=0&label_id=0
  4800. [运行时间:5.627220s] [吞吐率:0.18req/s] [内存消耗:4,923.90kb] [文件加载:168]
  4801. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4802. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4803. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4804. [ info ] [ ROUTE ] array (
  4805. )
  4806. [ info ] [ HEADER ] array (
  4807. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb; page-limit=20',
  4808. 'accept-language' => 'zh-CN,zh;q=0.9',
  4809. 'accept-encoding' => 'gzip, deflate, br',
  4810. 'referer' => 'https://gaoyx.com/admin.html',
  4811. 'sec-fetch-dest' => 'empty',
  4812. 'sec-fetch-mode' => 'cors',
  4813. 'sec-fetch-site' => 'same-origin',
  4814. 'sec-ch-ua-platform' => '"Windows"',
  4815. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4816. 'sec-ch-ua-mobile' => '?0',
  4817. 'x-requested-with' => 'XMLHttpRequest',
  4818. 'accept' => '*/*',
  4819. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4820. 'connection' => 'keep-alive',
  4821. 'host' => 'gaoyx.com',
  4822. 'content-length' => '',
  4823. 'content-type' => '',
  4824. )
  4825. [ info ] [ PARAM ] array (
  4826. 'spm' => 'm-64-175-176',
  4827. 'name' => '',
  4828. 'phone' => '',
  4829. 'create_at' => '',
  4830. 'account_type' => '0',
  4831. 'level_id' => '0',
  4832. 'label_id' => '0',
  4833. )
  4834. [ info ] [ DB ] INIT mysql
  4835. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\member\index.html [ array (
  4836. 0 => 'page',
  4837. 1 => 'list',
  4838. 2 => 'table',
  4839. 3 => 'app',
  4840. 4 => 'request',
  4841. 5 => 'csrf_state',
  4842. 6 => 'csrf_message',
  4843. 7 => 'search_url',
  4844. 8 => 'title',
  4845. 9 => 'tag_arr',
  4846. 10 => 'level_arr',
  4847. 11 => 'pagehtml',
  4848. ) ]
  4849. ---------------------------------------------------------------
  4850. [2023-12-26T11:21:12+08:00] 127.0.0.1 GET gaoyx.com/user/message/index.html?spm=m-64-175-301
  4851. [运行时间:0.602325s] [吞吐率:1.66req/s] [内存消耗:4,326.42kb] [文件加载:157]
  4852. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4853. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4854. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4855. [ info ] [ ROUTE ] array (
  4856. )
  4857. [ info ] [ HEADER ] array (
  4858. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb',
  4859. 'accept-language' => 'zh-CN,zh;q=0.9',
  4860. 'accept-encoding' => 'gzip, deflate, br',
  4861. 'referer' => 'https://gaoyx.com/admin.html',
  4862. 'sec-fetch-dest' => 'empty',
  4863. 'sec-fetch-mode' => 'cors',
  4864. 'sec-fetch-site' => 'same-origin',
  4865. 'sec-ch-ua-platform' => '"Windows"',
  4866. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4867. 'sec-ch-ua-mobile' => '?0',
  4868. 'x-requested-with' => 'XMLHttpRequest',
  4869. 'accept' => '*/*',
  4870. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4871. 'connection' => 'keep-alive',
  4872. 'host' => 'gaoyx.com',
  4873. 'content-length' => '',
  4874. 'content-type' => '',
  4875. )
  4876. [ info ] [ PARAM ] array (
  4877. 'spm' => 'm-64-175-301',
  4878. )
  4879. [ info ] [ DB ] INIT mysql
  4880. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\message\index.html [ array (
  4881. 0 => 'page',
  4882. 1 => 'list',
  4883. 2 => 'table',
  4884. 3 => 'app',
  4885. 4 => 'request',
  4886. 5 => 'csrf_state',
  4887. 6 => 'csrf_message',
  4888. 7 => 'title',
  4889. 8 => 'pagehtml',
  4890. ) ]
  4891. ---------------------------------------------------------------
  4892. [2023-12-26T11:21:13+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  4893. [运行时间:0.538994s] [吞吐率:1.86req/s] [内存消耗:4,312.32kb] [文件加载:158]
  4894. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4895. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4896. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4897. [ info ] [ ROUTE ] array (
  4898. )
  4899. [ info ] [ HEADER ] array (
  4900. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb; page-limit=20',
  4901. 'accept-language' => 'zh-CN,zh;q=0.9',
  4902. 'accept-encoding' => 'gzip, deflate, br',
  4903. 'referer' => 'https://gaoyx.com/admin.html',
  4904. 'sec-fetch-dest' => 'empty',
  4905. 'sec-fetch-mode' => 'cors',
  4906. 'sec-fetch-site' => 'same-origin',
  4907. 'sec-ch-ua-platform' => '"Windows"',
  4908. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4909. 'sec-ch-ua-mobile' => '?0',
  4910. 'x-requested-with' => 'XMLHttpRequest',
  4911. 'accept' => '*/*',
  4912. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4913. 'connection' => 'keep-alive',
  4914. 'host' => 'gaoyx.com',
  4915. 'content-length' => '',
  4916. 'content-type' => '',
  4917. )
  4918. [ info ] [ PARAM ] array (
  4919. 'spm' => 'm-277-280-197',
  4920. )
  4921. [ info ] [ DB ] INIT mysql
  4922. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  4923. 0 => 'page',
  4924. 1 => 'list',
  4925. 2 => 'table',
  4926. 3 => 'app',
  4927. 4 => 'request',
  4928. 5 => 'csrf_state',
  4929. 6 => 'csrf_message',
  4930. 7 => 'title',
  4931. 8 => 'place_desc',
  4932. 9 => 'pagehtml',
  4933. ) ]
  4934. ---------------------------------------------------------------
  4935. [2023-12-26T11:21:14+08:00] 127.0.0.1 GET gaoyx.com/order/level_order/index.html?spm=m-150-253
  4936. [运行时间:0.530323s] [吞吐率:1.89req/s] [内存消耗:4,382.67kb] [文件加载:158]
  4937. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4938. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4939. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4940. [ info ] [ ROUTE ] array (
  4941. )
  4942. [ info ] [ HEADER ] array (
  4943. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb; page-limit=20',
  4944. 'accept-language' => 'zh-CN,zh;q=0.9',
  4945. 'accept-encoding' => 'gzip, deflate, br',
  4946. 'referer' => 'https://gaoyx.com/admin.html',
  4947. 'sec-fetch-dest' => 'empty',
  4948. 'sec-fetch-mode' => 'cors',
  4949. 'sec-fetch-site' => 'same-origin',
  4950. 'sec-ch-ua-platform' => '"Windows"',
  4951. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4952. 'sec-ch-ua-mobile' => '?0',
  4953. 'x-requested-with' => 'XMLHttpRequest',
  4954. 'accept' => '*/*',
  4955. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4956. 'connection' => 'keep-alive',
  4957. 'host' => 'gaoyx.com',
  4958. 'content-length' => '',
  4959. 'content-type' => '',
  4960. )
  4961. [ info ] [ PARAM ] array (
  4962. 'spm' => 'm-150-253',
  4963. )
  4964. [ info ] [ DB ] INIT mysql
  4965. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\order\view\level_order\index.html [ array (
  4966. 0 => 'page',
  4967. 1 => 'list',
  4968. 2 => 'table',
  4969. 3 => 'app',
  4970. 4 => 'request',
  4971. 5 => 'csrf_state',
  4972. 6 => 'csrf_message',
  4973. 7 => 'title',
  4974. 8 => 'pagehtml',
  4975. ) ]
  4976. ---------------------------------------------------------------
  4977. [2023-12-26T11:21:16+08:00] 127.0.0.1 GET gaoyx.com/mall/express_company/index.html?spm=m-136-196-200
  4978. [运行时间:0.510966s] [吞吐率:1.96req/s] [内存消耗:4,313.68kb] [文件加载:158]
  4979. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  4980. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  4981. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  4982. [ info ] [ ROUTE ] array (
  4983. )
  4984. [ info ] [ HEADER ] array (
  4985. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb; page-limit=20',
  4986. 'accept-language' => 'zh-CN,zh;q=0.9',
  4987. 'accept-encoding' => 'gzip, deflate, br',
  4988. 'referer' => 'https://gaoyx.com/admin.html',
  4989. 'sec-fetch-dest' => 'empty',
  4990. 'sec-fetch-mode' => 'cors',
  4991. 'sec-fetch-site' => 'same-origin',
  4992. 'sec-ch-ua-platform' => '"Windows"',
  4993. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  4994. 'sec-ch-ua-mobile' => '?0',
  4995. 'x-requested-with' => 'XMLHttpRequest',
  4996. 'accept' => '*/*',
  4997. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  4998. 'connection' => 'keep-alive',
  4999. 'host' => 'gaoyx.com',
  5000. 'content-length' => '',
  5001. 'content-type' => '',
  5002. )
  5003. [ info ] [ PARAM ] array (
  5004. 'spm' => 'm-136-196-200',
  5005. )
  5006. [ info ] [ DB ] INIT mysql
  5007. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\express_company\index.html [ array (
  5008. 0 => 'page',
  5009. 1 => 'list',
  5010. 2 => 'table',
  5011. 3 => 'app',
  5012. 4 => 'request',
  5013. 5 => 'csrf_state',
  5014. 6 => 'csrf_message',
  5015. 7 => 'title',
  5016. 8 => 'pagehtml',
  5017. ) ]
  5018. ---------------------------------------------------------------
  5019. [2023-12-26T11:21:17+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  5020. [运行时间:0.519236s] [吞吐率:1.93req/s] [内存消耗:4,312.91kb] [文件加载:158]
  5021. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5022. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5023. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5024. [ info ] [ ROUTE ] array (
  5025. )
  5026. [ info ] [ HEADER ] array (
  5027. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb; page-limit=20',
  5028. 'accept-language' => 'zh-CN,zh;q=0.9',
  5029. 'accept-encoding' => 'gzip, deflate, br',
  5030. 'referer' => 'https://gaoyx.com/admin.html',
  5031. 'sec-fetch-dest' => 'empty',
  5032. 'sec-fetch-mode' => 'cors',
  5033. 'sec-fetch-site' => 'same-origin',
  5034. 'sec-ch-ua-platform' => '"Windows"',
  5035. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5036. 'sec-ch-ua-mobile' => '?0',
  5037. 'x-requested-with' => 'XMLHttpRequest',
  5038. 'accept' => '*/*',
  5039. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5040. 'connection' => 'keep-alive',
  5041. 'host' => 'gaoyx.com',
  5042. 'content-length' => '',
  5043. 'content-type' => '',
  5044. )
  5045. [ info ] [ PARAM ] array (
  5046. 'spm' => 'm-277-280-197',
  5047. )
  5048. [ info ] [ DB ] INIT mysql
  5049. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  5050. 0 => 'page',
  5051. 1 => 'list',
  5052. 2 => 'table',
  5053. 3 => 'app',
  5054. 4 => 'request',
  5055. 5 => 'csrf_state',
  5056. 6 => 'csrf_message',
  5057. 7 => 'title',
  5058. 8 => 'place_desc',
  5059. 9 => 'pagehtml',
  5060. ) ]
  5061. ---------------------------------------------------------------
  5062. [2023-12-26T11:21:18+08:00] 127.0.0.1 GET gaoyx.com/operate/cover/index.html?spm=m-277-280-300
  5063. [运行时间:0.519308s] [吞吐率:1.93req/s] [内存消耗:4,312.45kb] [文件加载:158]
  5064. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5065. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5066. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5067. [ info ] [ ROUTE ] array (
  5068. )
  5069. [ info ] [ HEADER ] array (
  5070. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb; page-limit=20',
  5071. 'accept-language' => 'zh-CN,zh;q=0.9',
  5072. 'accept-encoding' => 'gzip, deflate, br',
  5073. 'referer' => 'https://gaoyx.com/admin.html',
  5074. 'sec-fetch-dest' => 'empty',
  5075. 'sec-fetch-mode' => 'cors',
  5076. 'sec-fetch-site' => 'same-origin',
  5077. 'sec-ch-ua-platform' => '"Windows"',
  5078. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5079. 'sec-ch-ua-mobile' => '?0',
  5080. 'x-requested-with' => 'XMLHttpRequest',
  5081. 'accept' => '*/*',
  5082. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5083. 'connection' => 'keep-alive',
  5084. 'host' => 'gaoyx.com',
  5085. 'content-length' => '',
  5086. 'content-type' => '',
  5087. )
  5088. [ info ] [ PARAM ] array (
  5089. 'spm' => 'm-277-280-300',
  5090. )
  5091. [ info ] [ DB ] INIT mysql
  5092. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\cover\index.html [ array (
  5093. 0 => 'page',
  5094. 1 => 'list',
  5095. 2 => 'table',
  5096. 3 => 'app',
  5097. 4 => 'request',
  5098. 5 => 'csrf_state',
  5099. 6 => 'csrf_message',
  5100. 7 => 'title',
  5101. 8 => 'pagehtml',
  5102. ) ]
  5103. ---------------------------------------------------------------
  5104. [2023-12-26T11:21:20+08:00] 127.0.0.1 GET gaoyx.com/operate/contact/index.html?spm=m-277-280-298
  5105. [运行时间:0.535407s] [吞吐率:1.87req/s] [内存消耗:4,318.66kb] [文件加载:158]
  5106. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5107. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5108. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5109. [ info ] [ ROUTE ] array (
  5110. )
  5111. [ info ] [ HEADER ] array (
  5112. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb; page-limit=20',
  5113. 'accept-language' => 'zh-CN,zh;q=0.9',
  5114. 'accept-encoding' => 'gzip, deflate, br',
  5115. 'referer' => 'https://gaoyx.com/admin.html',
  5116. 'sec-fetch-dest' => 'empty',
  5117. 'sec-fetch-mode' => 'cors',
  5118. 'sec-fetch-site' => 'same-origin',
  5119. 'sec-ch-ua-platform' => '"Windows"',
  5120. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5121. 'sec-ch-ua-mobile' => '?0',
  5122. 'x-requested-with' => 'XMLHttpRequest',
  5123. 'accept' => '*/*',
  5124. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5125. 'connection' => 'keep-alive',
  5126. 'host' => 'gaoyx.com',
  5127. 'content-length' => '',
  5128. 'content-type' => '',
  5129. )
  5130. [ info ] [ PARAM ] array (
  5131. 'spm' => 'm-277-280-298',
  5132. )
  5133. [ info ] [ DB ] INIT mysql
  5134. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\contact\index.html [ array (
  5135. 0 => 'page',
  5136. 1 => 'list',
  5137. 2 => 'table',
  5138. 3 => 'app',
  5139. 4 => 'request',
  5140. 5 => 'csrf_state',
  5141. 6 => 'csrf_message',
  5142. 7 => 'title',
  5143. 8 => 'pagehtml',
  5144. ) ]
  5145. ---------------------------------------------------------------
  5146. [2023-12-26T11:21:25+08:00] 127.0.0.1 GET gaoyx.com/operate/cover/index.html?spm=m-277-280-300
  5147. [运行时间:0.539522s] [吞吐率:1.85req/s] [内存消耗:4,313.72kb] [文件加载:158]
  5148. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5149. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5150. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5151. [ info ] [ ROUTE ] array (
  5152. )
  5153. [ info ] [ HEADER ] array (
  5154. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb; page-limit=20',
  5155. 'accept-language' => 'zh-CN,zh;q=0.9',
  5156. 'accept-encoding' => 'gzip, deflate, br',
  5157. 'referer' => 'https://gaoyx.com/admin.html',
  5158. 'sec-fetch-dest' => 'empty',
  5159. 'sec-fetch-mode' => 'cors',
  5160. 'sec-fetch-site' => 'same-origin',
  5161. 'sec-ch-ua-platform' => '"Windows"',
  5162. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5163. 'sec-ch-ua-mobile' => '?0',
  5164. 'x-requested-with' => 'XMLHttpRequest',
  5165. 'accept' => '*/*',
  5166. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5167. 'connection' => 'keep-alive',
  5168. 'host' => 'gaoyx.com',
  5169. 'content-length' => '',
  5170. 'content-type' => '',
  5171. )
  5172. [ info ] [ PARAM ] array (
  5173. 'spm' => 'm-277-280-300',
  5174. )
  5175. [ info ] [ DB ] INIT mysql
  5176. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\cover\index.html [ array (
  5177. 0 => 'page',
  5178. 1 => 'list',
  5179. 2 => 'table',
  5180. 3 => 'app',
  5181. 4 => 'request',
  5182. 5 => 'csrf_state',
  5183. 6 => 'csrf_message',
  5184. 7 => 'title',
  5185. 8 => 'pagehtml',
  5186. ) ]
  5187. ---------------------------------------------------------------
  5188. [2023-12-26T11:22:27+08:00] 127.0.0.1 POST gaoyx.com/api/Expedite/getModulesCover?tag=search
  5189. [运行时间:1.928812s] [吞吐率:0.52req/s] [内存消耗:5,799.13kb] [文件加载:153]
  5190. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5191. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5192. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5193. [ info ] [ ROUTE ] array (
  5194. )
  5195. [ info ] [ HEADER ] array (
  5196. 'content-length' => '167',
  5197. 'content-type' => 'multipart/form-data; boundary=--------------------------481581242275560107503531',
  5198. 'host' => 'gaoyx.com',
  5199. 'connection' => 'keep-alive',
  5200. 'accept-encoding' => 'gzip, deflate, br',
  5201. 'accept' => '*/*',
  5202. 'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ5NSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzAyODg3NTM0LCJuYmYiOjE3MDI4ODc1MzQsImV4cCI6MTcxNzI4NzUzNCwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.s1LpKxtJOv83yfv-snXAOgVkHb6RyK6krOh6idIbj-A',
  5203. 'cache-control' => 'no-cache',
  5204. 'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
  5205. )
  5206. [ info ] [ PARAM ] array (
  5207. 'tag' => 'search',
  5208. 'search' => 'search',
  5209. )
  5210. [ info ] [ DB ] INIT mysql
  5211. ---------------------------------------------------------------
  5212. [2023-12-26T11:22:39+08:00] 127.0.0.1 GET gaoyx.com/operate/cover/edit.html?id=11&spm=m-277-280-300&open_type=modal
  5213. [运行时间:0.490912s] [吞吐率:2.04req/s] [内存消耗:4,123.92kb] [文件加载:152]
  5214. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5215. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5216. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5217. [ info ] [ ROUTE ] array (
  5218. )
  5219. [ info ] [ HEADER ] array (
  5220. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb',
  5221. 'accept-language' => 'zh-CN,zh;q=0.9',
  5222. 'accept-encoding' => 'gzip, deflate, br',
  5223. 'referer' => 'https://gaoyx.com/admin.html',
  5224. 'sec-fetch-dest' => 'empty',
  5225. 'sec-fetch-mode' => 'cors',
  5226. 'sec-fetch-site' => 'same-origin',
  5227. 'sec-ch-ua-platform' => '"Windows"',
  5228. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5229. 'sec-ch-ua-mobile' => '?0',
  5230. 'x-requested-with' => 'XMLHttpRequest',
  5231. 'accept' => '*/*',
  5232. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5233. 'connection' => 'keep-alive',
  5234. 'host' => 'gaoyx.com',
  5235. 'content-length' => '',
  5236. 'content-type' => '',
  5237. )
  5238. [ info ] [ PARAM ] array (
  5239. 'id' => '11',
  5240. 'spm' => 'm-277-280-300',
  5241. 'open_type' => 'modal',
  5242. )
  5243. [ info ] [ DB ] INIT mysql
  5244. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\cover\form.html [ array (
  5245. 0 => 'vo',
  5246. 1 => 'table',
  5247. 2 => 'app',
  5248. 3 => 'request',
  5249. 4 => 'csrf_state',
  5250. 5 => 'csrf_message',
  5251. 6 => 'title',
  5252. ) ]
  5253. ---------------------------------------------------------------
  5254. [2023-12-26T11:22:40+08:00] 127.0.0.1 POST gaoyx.com/admin.html?s=admin/api.plugs/check&spm=m-277-280-300
  5255. [运行时间:0.066966s] [吞吐率:14.93req/s] [内存消耗:3,589.49kb] [文件加载:146]
  5256. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5257. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5258. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5259. [ info ] [ ROUTE ] array (
  5260. )
  5261. [ info ] [ HEADER ] array (
  5262. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb',
  5263. 'accept-language' => 'zh-CN,zh;q=0.9',
  5264. 'accept-encoding' => 'gzip, deflate, br',
  5265. 'referer' => 'https://gaoyx.com/admin.html',
  5266. 'sec-fetch-dest' => 'empty',
  5267. 'sec-fetch-mode' => 'cors',
  5268. 'sec-fetch-site' => 'same-origin',
  5269. 'origin' => 'https://gaoyx.com',
  5270. 'sec-ch-ua-platform' => '"Windows"',
  5271. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5272. 'sec-ch-ua-mobile' => '?0',
  5273. 'x-requested-with' => 'XMLHttpRequest',
  5274. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  5275. 'accept' => '*/*',
  5276. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5277. 'content-length' => '28',
  5278. 'connection' => 'keep-alive',
  5279. 'host' => 'gaoyx.com',
  5280. )
  5281. [ info ] [ PARAM ] array (
  5282. 'spm' => 'm-277-280-300',
  5283. 'exts' => 'png,jpg,gif',
  5284. 'uptype' => '',
  5285. )
  5286. ---------------------------------------------------------------
  5287. [2023-12-26T14:03:39+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  5288. [运行时间:1.848297s] [吞吐率:0.54req/s] [内存消耗:14,915.20kb] [文件加载:337]
  5289. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5290. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5291. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5292. [ info ] [ ROUTE ] array (
  5293. )
  5294. [ info ] [ HEADER ] array (
  5295. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb',
  5296. 'accept-language' => 'zh-CN,zh;q=0.9',
  5297. 'accept-encoding' => 'gzip, deflate, br',
  5298. 'referer' => 'https://gaoyx.com/admin/login.html',
  5299. 'sec-fetch-dest' => 'document',
  5300. 'sec-fetch-user' => '?1',
  5301. 'sec-fetch-mode' => 'navigate',
  5302. 'sec-fetch-site' => 'same-origin',
  5303. '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',
  5304. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5305. 'upgrade-insecure-requests' => '1',
  5306. 'sec-ch-ua-platform' => '"Windows"',
  5307. 'sec-ch-ua-mobile' => '?0',
  5308. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5309. 'cache-control' => 'max-age=0',
  5310. 'connection' => 'keep-alive',
  5311. 'host' => 'gaoyx.com',
  5312. 'content-length' => '',
  5313. 'content-type' => '',
  5314. )
  5315. [ info ] [ PARAM ] array (
  5316. )
  5317. [ info ] [ DB ] INIT mysql
  5318. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  5319. 0 => 'app',
  5320. 1 => 'request',
  5321. 2 => 'csrf_state',
  5322. 3 => 'csrf_message',
  5323. 4 => 'title',
  5324. 5 => 'menus',
  5325. ) ]
  5326. ---------------------------------------------------------------
  5327. [2023-12-26T14:03:40+08:00] 127.0.0.1 GET gaoyx.com/user/group/index.html?spm=m-64-175-254
  5328. [运行时间:0.497252s] [吞吐率:2.01req/s] [内存消耗:4,291.05kb] [文件加载:158]
  5329. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5330. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5331. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5332. [ info ] [ ROUTE ] array (
  5333. )
  5334. [ info ] [ HEADER ] array (
  5335. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtChJfDmynBgnB0BYi2h7A7Q%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtF9AVfxYbsm5hG4VZIypKAMBCWTlpcz_SBAe0ERDS3xiPx0YA4aXFlS0jBJ1D7S-SiBDCBZVVWhMGOX-4CXe4nxZvLEPlXQLKRpqa9o5yqnA3SBeHI78KUJ7fhEqcAFsOZ66liuuZ-rm4TLlpN8A2XPonRCmtEHUxPBKEZnCy8Xb',
  5336. 'accept-language' => 'zh-CN,zh;q=0.9',
  5337. 'accept-encoding' => 'gzip, deflate, br',
  5338. 'referer' => 'https://gaoyx.com/admin.html',
  5339. 'sec-fetch-dest' => 'empty',
  5340. 'sec-fetch-mode' => 'cors',
  5341. 'sec-fetch-site' => 'same-origin',
  5342. 'sec-ch-ua-platform' => '"Windows"',
  5343. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5344. 'sec-ch-ua-mobile' => '?0',
  5345. 'x-requested-with' => 'XMLHttpRequest',
  5346. 'accept' => '*/*',
  5347. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5348. 'connection' => 'keep-alive',
  5349. 'host' => 'gaoyx.com',
  5350. 'content-length' => '',
  5351. 'content-type' => '',
  5352. )
  5353. [ info ] [ PARAM ] array (
  5354. 'spm' => 'm-64-175-254',
  5355. )
  5356. [ info ] [ DB ] INIT mysql
  5357. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\user\view\group\index.html [ array (
  5358. 0 => 'page',
  5359. 1 => 'list',
  5360. 2 => 'table',
  5361. 3 => 'app',
  5362. 4 => 'request',
  5363. 5 => 'csrf_state',
  5364. 6 => 'csrf_message',
  5365. 7 => 'title',
  5366. 8 => 'pagehtml',
  5367. ) ]
  5368. ---------------------------------------------------------------
  5369. [2023-12-26T14:03:41+08:00] 127.0.0.1 GET gaoyx.com/mall/banner/index.html?spm=m-277-280-197
  5370. [运行时间:0.539565s] [吞吐率:1.85req/s] [内存消耗:4,311.63kb] [文件加载:158]
  5371. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5372. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5373. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5374. [ info ] [ ROUTE ] array (
  5375. )
  5376. [ info ] [ HEADER ] array (
  5377. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtAz3vOV8N+OhT1t5i5HWFIA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNktNqHwl1LOG0iJinEDYPGNjuq8ML-ojeCCOHIGd1U7EVz0fls26M9NIpRZ5NYD3sQXQnXIVNHnsroFadozREPr8mw7asaJ5Oq0Y72JmARQPpVXRXIBZrK326d4qnPkRfrI7f3gZhPqpjQ0oiUBVu5hwdkcwyIjQcujGEDqglUT; page-limit=20',
  5378. 'accept-language' => 'zh-CN,zh;q=0.9',
  5379. 'accept-encoding' => 'gzip, deflate, br',
  5380. 'referer' => 'https://gaoyx.com/admin.html',
  5381. 'sec-fetch-dest' => 'empty',
  5382. 'sec-fetch-mode' => 'cors',
  5383. 'sec-fetch-site' => 'same-origin',
  5384. 'sec-ch-ua-platform' => '"Windows"',
  5385. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5386. 'sec-ch-ua-mobile' => '?0',
  5387. 'x-requested-with' => 'XMLHttpRequest',
  5388. 'accept' => '*/*',
  5389. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5390. 'connection' => 'keep-alive',
  5391. 'host' => 'gaoyx.com',
  5392. 'content-length' => '',
  5393. 'content-type' => '',
  5394. )
  5395. [ info ] [ PARAM ] array (
  5396. 'spm' => 'm-277-280-197',
  5397. )
  5398. [ info ] [ DB ] INIT mysql
  5399. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\mall\view\banner\index.html [ array (
  5400. 0 => 'page',
  5401. 1 => 'list',
  5402. 2 => 'table',
  5403. 3 => 'app',
  5404. 4 => 'request',
  5405. 5 => 'csrf_state',
  5406. 6 => 'csrf_message',
  5407. 7 => 'title',
  5408. 8 => 'place_desc',
  5409. 9 => 'pagehtml',
  5410. ) ]
  5411. ---------------------------------------------------------------
  5412. [2023-12-26T14:03:45+08:00] 127.0.0.1 GET gaoyx.com/operate/recruit/index.html?spm=m-277-289-291
  5413. [运行时间:0.802232s] [吞吐率:1.25req/s] [内存消耗:4,807.67kb] [文件加载:158]
  5414. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5415. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5416. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5417. [ info ] [ ROUTE ] array (
  5418. )
  5419. [ info ] [ HEADER ] array (
  5420. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtAz3vOV8N+OhT1t5i5HWFIA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNktNqHwl1LOG0iJinEDYPGNjuq8ML-ojeCCOHIGd1U7EVz0fls26M9NIpRZ5NYD3sQXQnXIVNHnsroFadozREPr8mw7asaJ5Oq0Y72JmARQPpVXRXIBZrK326d4qnPkRfrI7f3gZhPqpjQ0oiUBVu5hwdkcwyIjQcujGEDqglUT; page-limit=20',
  5421. 'accept-language' => 'zh-CN,zh;q=0.9',
  5422. 'accept-encoding' => 'gzip, deflate, br',
  5423. 'referer' => 'https://gaoyx.com/admin.html',
  5424. 'sec-fetch-dest' => 'empty',
  5425. 'sec-fetch-mode' => 'cors',
  5426. 'sec-fetch-site' => 'same-origin',
  5427. 'sec-ch-ua-platform' => '"Windows"',
  5428. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5429. 'sec-ch-ua-mobile' => '?0',
  5430. 'x-requested-with' => 'XMLHttpRequest',
  5431. 'accept' => '*/*',
  5432. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5433. 'connection' => 'keep-alive',
  5434. 'host' => 'gaoyx.com',
  5435. 'content-length' => '',
  5436. 'content-type' => '',
  5437. )
  5438. [ info ] [ PARAM ] array (
  5439. 'spm' => 'm-277-289-291',
  5440. )
  5441. [ info ] [ DB ] INIT mysql
  5442. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\recruit\index.html [ array (
  5443. 0 => 'page',
  5444. 1 => 'list',
  5445. 2 => 'table',
  5446. 3 => 'app',
  5447. 4 => 'request',
  5448. 5 => 'csrf_state',
  5449. 6 => 'csrf_message',
  5450. 7 => 'title',
  5451. 8 => 'pagehtml',
  5452. ) ]
  5453. ---------------------------------------------------------------
  5454. [2023-12-26T14:07:16+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  5455. [运行时间:1.604371s] [吞吐率:0.62req/s] [内存消耗:14,912.52kb] [文件加载:337]
  5456. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5457. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5458. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5459. [ info ] [ ROUTE ] array (
  5460. )
  5461. [ info ] [ HEADER ] array (
  5462. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtAz3vOV8N+OhT1t5i5HWFIA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNktNqHwl1LOG0iJinEDYPGNjuq8ML-ojeCCOHIGd1U7EVz0fls26M9NIpRZ5NYD3sQXQnXIVNHnsroFadozREPr8mw7asaJ5Oq0Y72JmARQPpVXRXIBZrK326d4qnPkRfrI7f3gZhPqpjQ0oiUBVu5hwdkcwyIjQcujGEDqglUT',
  5463. 'accept-language' => 'zh-CN,zh;q=0.9',
  5464. 'accept-encoding' => 'gzip, deflate, br',
  5465. 'referer' => 'https://gaoyx.com/admin/login.html',
  5466. 'sec-fetch-dest' => 'document',
  5467. 'sec-fetch-user' => '?1',
  5468. 'sec-fetch-mode' => 'navigate',
  5469. 'sec-fetch-site' => 'same-origin',
  5470. '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',
  5471. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5472. 'upgrade-insecure-requests' => '1',
  5473. 'sec-ch-ua-platform' => '"Windows"',
  5474. 'sec-ch-ua-mobile' => '?0',
  5475. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5476. 'cache-control' => 'max-age=0',
  5477. 'connection' => 'keep-alive',
  5478. 'host' => 'gaoyx.com',
  5479. 'content-length' => '',
  5480. 'content-type' => '',
  5481. )
  5482. [ info ] [ PARAM ] array (
  5483. )
  5484. [ info ] [ DB ] INIT mysql
  5485. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  5486. 0 => 'app',
  5487. 1 => 'request',
  5488. 2 => 'csrf_state',
  5489. 3 => 'csrf_message',
  5490. 4 => 'title',
  5491. 5 => 'menus',
  5492. ) ]
  5493. ---------------------------------------------------------------
  5494. [2023-12-26T14:07:17+08:00] 127.0.0.1 GET gaoyx.com/operate/recruit/index.html?spm=m-277-289-291
  5495. [运行时间:0.833703s] [吞吐率:1.20req/s] [内存消耗:4,808.45kb] [文件加载:158]
  5496. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5497. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5498. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5499. [ info ] [ ROUTE ] array (
  5500. )
  5501. [ info ] [ HEADER ] array (
  5502. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtAz3vOV8N+OhT1t5i5HWFIA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNktNqHwl1LOG0iJinEDYPGNjuq8ML-ojeCCOHIGd1U7EVz0fls26M9NIpRZ5NYD3sQXQnXIVNHnsroFadozREPr8mw7asaJ5Oq0Y72JmARQPpVXRXIBZrK326d4qnPkRfrI7f3gZhPqpjQ0oiUBVu5hwdkcwyIjQcujGEDqglUT',
  5503. 'accept-language' => 'zh-CN,zh;q=0.9',
  5504. 'accept-encoding' => 'gzip, deflate, br',
  5505. 'referer' => 'https://gaoyx.com/admin.html',
  5506. 'sec-fetch-dest' => 'empty',
  5507. 'sec-fetch-mode' => 'cors',
  5508. 'sec-fetch-site' => 'same-origin',
  5509. 'sec-ch-ua-platform' => '"Windows"',
  5510. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5511. 'sec-ch-ua-mobile' => '?0',
  5512. 'x-requested-with' => 'XMLHttpRequest',
  5513. 'accept' => '*/*',
  5514. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5515. 'connection' => 'keep-alive',
  5516. 'host' => 'gaoyx.com',
  5517. 'content-length' => '',
  5518. 'content-type' => '',
  5519. )
  5520. [ info ] [ PARAM ] array (
  5521. 'spm' => 'm-277-289-291',
  5522. )
  5523. [ info ] [ DB ] INIT mysql
  5524. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\recruit\index.html [ array (
  5525. 0 => 'page',
  5526. 1 => 'list',
  5527. 2 => 'table',
  5528. 3 => 'app',
  5529. 4 => 'request',
  5530. 5 => 'csrf_state',
  5531. 6 => 'csrf_message',
  5532. 7 => 'title',
  5533. 8 => 'pagehtml',
  5534. ) ]
  5535. ---------------------------------------------------------------
  5536. [2023-12-26T14:07:56+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  5537. [运行时间:0.769892s] [吞吐率:1.30req/s] [内存消耗:14,186.48kb] [文件加载:337]
  5538. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5539. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5540. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5541. [ info ] [ ROUTE ] array (
  5542. )
  5543. [ info ] [ HEADER ] array (
  5544. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtO3/AzCBxz4jCtbTM3lwRFA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtIkarqSq9m5eS1haAQUi7E0ffQQJWmTNVKJOqIhNwT1yF6Zi8t72-HBL3UT_XR_UJl_anpTKoxUp-pLgKgAQGzi8esCOkMLPPuLifBauLekJcwcBrqaNDuTKxBPALUdBP1t-tGvYnX7jZUAA1kJC0mO5_AyT4AsYDCODgxpeCWPx',
  5545. 'accept-language' => 'zh-CN,zh;q=0.9',
  5546. 'accept-encoding' => 'gzip, deflate, br',
  5547. 'referer' => 'https://gaoyx.com/admin/login.html',
  5548. 'sec-fetch-dest' => 'document',
  5549. 'sec-fetch-user' => '?1',
  5550. 'sec-fetch-mode' => 'navigate',
  5551. 'sec-fetch-site' => 'same-origin',
  5552. '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',
  5553. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5554. 'upgrade-insecure-requests' => '1',
  5555. 'sec-ch-ua-platform' => '"Windows"',
  5556. 'sec-ch-ua-mobile' => '?0',
  5557. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5558. 'cache-control' => 'max-age=0',
  5559. 'connection' => 'keep-alive',
  5560. 'host' => 'gaoyx.com',
  5561. 'content-length' => '',
  5562. 'content-type' => '',
  5563. )
  5564. [ info ] [ PARAM ] array (
  5565. )
  5566. [ info ] [ DB ] INIT mysql
  5567. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  5568. 0 => 'app',
  5569. 1 => 'request',
  5570. 2 => 'csrf_state',
  5571. 3 => 'csrf_message',
  5572. 4 => 'title',
  5573. 5 => 'menus',
  5574. ) ]
  5575. ---------------------------------------------------------------
  5576. [2023-12-26T14:07:57+08:00] 127.0.0.1 GET gaoyx.com/operate/recruit/index.html?spm=m-277-289-291
  5577. [运行时间:0.829014s] [吞吐率:1.21req/s] [内存消耗:4,809.09kb] [文件加载:158]
  5578. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5579. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5580. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5581. [ info ] [ ROUTE ] array (
  5582. )
  5583. [ info ] [ HEADER ] array (
  5584. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtO3/AzCBxz4jCtbTM3lwRFA%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtIkarqSq9m5eS1haAQUi7E0ffQQJWmTNVKJOqIhNwT1yF6Zi8t72-HBL3UT_XR_UJl_anpTKoxUp-pLgKgAQGzi8esCOkMLPPuLifBauLekJcwcBrqaNDuTKxBPALUdBP1t-tGvYnX7jZUAA1kJC0mO5_AyT4AsYDCODgxpeCWPx',
  5585. 'accept-language' => 'zh-CN,zh;q=0.9',
  5586. 'accept-encoding' => 'gzip, deflate, br',
  5587. 'referer' => 'https://gaoyx.com/admin.html',
  5588. 'sec-fetch-dest' => 'empty',
  5589. 'sec-fetch-mode' => 'cors',
  5590. 'sec-fetch-site' => 'same-origin',
  5591. 'sec-ch-ua-platform' => '"Windows"',
  5592. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5593. 'sec-ch-ua-mobile' => '?0',
  5594. 'x-requested-with' => 'XMLHttpRequest',
  5595. 'accept' => '*/*',
  5596. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5597. 'connection' => 'keep-alive',
  5598. 'host' => 'gaoyx.com',
  5599. 'content-length' => '',
  5600. 'content-type' => '',
  5601. )
  5602. [ info ] [ PARAM ] array (
  5603. 'spm' => 'm-277-289-291',
  5604. )
  5605. [ info ] [ DB ] INIT mysql
  5606. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\recruit\index.html [ array (
  5607. 0 => 'page',
  5608. 1 => 'list',
  5609. 2 => 'table',
  5610. 3 => 'app',
  5611. 4 => 'request',
  5612. 5 => 'csrf_state',
  5613. 6 => 'csrf_message',
  5614. 7 => 'title',
  5615. 8 => 'pagehtml',
  5616. ) ]
  5617. ---------------------------------------------------------------
  5618. [2023-12-26T14:08:20+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  5619. [运行时间:1.670269s] [吞吐率:0.60req/s] [内存消耗:14,913.91kb] [文件加载:337]
  5620. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5621. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5622. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5623. [ info ] [ ROUTE ] array (
  5624. )
  5625. [ info ] [ HEADER ] array (
  5626. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtCpuNMnLMIDHdbZwqms04BI%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtIkarqSq9m5eS1haAQUi7E1HRW5HR-W2YRcKt1AoPna9qFVjePINXWERbZwXhsYnUrbi_iMtHo6ZSEazO1Bq7yKD-eBbhGdpPGfNJBIUPvGAUNlNyJ9KS4gAEIwVhy2Gc-w8CT4mTIHXKQoAQ077y-kA1nn2GFiHv9lTddNBhzj_',
  5627. 'accept-language' => 'zh-CN,zh;q=0.9',
  5628. 'accept-encoding' => 'gzip, deflate, br',
  5629. 'referer' => 'https://gaoyx.com/admin/login.html',
  5630. 'sec-fetch-dest' => 'document',
  5631. 'sec-fetch-user' => '?1',
  5632. 'sec-fetch-mode' => 'navigate',
  5633. 'sec-fetch-site' => 'same-origin',
  5634. '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',
  5635. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5636. 'upgrade-insecure-requests' => '1',
  5637. 'sec-ch-ua-platform' => '"Windows"',
  5638. 'sec-ch-ua-mobile' => '?0',
  5639. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5640. 'cache-control' => 'max-age=0',
  5641. 'connection' => 'keep-alive',
  5642. 'host' => 'gaoyx.com',
  5643. 'content-length' => '',
  5644. 'content-type' => '',
  5645. )
  5646. [ info ] [ PARAM ] array (
  5647. )
  5648. [ info ] [ DB ] INIT mysql
  5649. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  5650. 0 => 'app',
  5651. 1 => 'request',
  5652. 2 => 'csrf_state',
  5653. 3 => 'csrf_message',
  5654. 4 => 'title',
  5655. 5 => 'menus',
  5656. ) ]
  5657. ---------------------------------------------------------------
  5658. [2023-12-26T14:08:21+08:00] 127.0.0.1 GET gaoyx.com/operate/recruit/index.html?spm=m-277-289-291
  5659. [运行时间:0.815900s] [吞吐率:1.23req/s] [内存消耗:4,809.84kb] [文件加载:158]
  5660. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5661. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5662. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5663. [ info ] [ ROUTE ] array (
  5664. )
  5665. [ info ] [ HEADER ] array (
  5666. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtCpuNMnLMIDHdbZwqms04BI%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtIkarqSq9m5eS1haAQUi7E1HRW5HR-W2YRcKt1AoPna9qFVjePINXWERbZwXhsYnUrbi_iMtHo6ZSEazO1Bq7yKD-eBbhGdpPGfNJBIUPvGAUNlNyJ9KS4gAEIwVhy2Gc-w8CT4mTIHXKQoAQ077y-kA1nn2GFiHv9lTddNBhzj_',
  5667. 'accept-language' => 'zh-CN,zh;q=0.9',
  5668. 'accept-encoding' => 'gzip, deflate, br',
  5669. 'referer' => 'https://gaoyx.com/admin.html',
  5670. 'sec-fetch-dest' => 'empty',
  5671. 'sec-fetch-mode' => 'cors',
  5672. 'sec-fetch-site' => 'same-origin',
  5673. 'sec-ch-ua-platform' => '"Windows"',
  5674. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5675. 'sec-ch-ua-mobile' => '?0',
  5676. 'x-requested-with' => 'XMLHttpRequest',
  5677. 'accept' => '*/*',
  5678. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5679. 'connection' => 'keep-alive',
  5680. 'host' => 'gaoyx.com',
  5681. 'content-length' => '',
  5682. 'content-type' => '',
  5683. )
  5684. [ info ] [ PARAM ] array (
  5685. 'spm' => 'm-277-289-291',
  5686. )
  5687. [ info ] [ DB ] INIT mysql
  5688. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\recruit\index.html [ array (
  5689. 0 => 'page',
  5690. 1 => 'list',
  5691. 2 => 'table',
  5692. 3 => 'app',
  5693. 4 => 'request',
  5694. 5 => 'csrf_state',
  5695. 6 => 'csrf_message',
  5696. 7 => 'title',
  5697. 8 => 'pagehtml',
  5698. ) ]
  5699. ---------------------------------------------------------------
  5700. [2023-12-26T14:08:59+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  5701. [运行时间:0.810028s] [吞吐率:1.23req/s] [内存消耗:14,187.75kb] [文件加载:337]
  5702. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5703. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5704. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5705. [ info ] [ ROUTE ] array (
  5706. )
  5707. [ info ] [ HEADER ] array (
  5708. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtLcqQ4zVybzX5G38vzm/kOs%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNwxlkL3pSNIOAiZyI2aAdwRyatifZLHdVytl3Y2n5zU0QS4DxoRrcqq0bi49wNDzgsA5Ui3QOsaRvgVMRpnUrp-LfbIxrPoUOVihOMZEEPiE8VaKorh5AcigNldHobiRGcZ0JGy2vp1i0XVKYgjlbpsS4DuEtCv2kdvBxzNX-v0',
  5709. 'accept-language' => 'zh-CN,zh;q=0.9',
  5710. 'accept-encoding' => 'gzip, deflate, br',
  5711. 'referer' => 'https://gaoyx.com/admin/login.html',
  5712. 'sec-fetch-dest' => 'document',
  5713. 'sec-fetch-user' => '?1',
  5714. 'sec-fetch-mode' => 'navigate',
  5715. 'sec-fetch-site' => 'same-origin',
  5716. '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',
  5717. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5718. 'upgrade-insecure-requests' => '1',
  5719. 'sec-ch-ua-platform' => '"Windows"',
  5720. 'sec-ch-ua-mobile' => '?0',
  5721. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5722. 'cache-control' => 'max-age=0',
  5723. 'connection' => 'keep-alive',
  5724. 'host' => 'gaoyx.com',
  5725. 'content-length' => '',
  5726. 'content-type' => '',
  5727. )
  5728. [ info ] [ PARAM ] array (
  5729. )
  5730. [ info ] [ DB ] INIT mysql
  5731. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  5732. 0 => 'app',
  5733. 1 => 'request',
  5734. 2 => 'csrf_state',
  5735. 3 => 'csrf_message',
  5736. 4 => 'title',
  5737. 5 => 'menus',
  5738. ) ]
  5739. ---------------------------------------------------------------
  5740. [2023-12-26T14:09:00+08:00] 127.0.0.1 GET gaoyx.com/operate/recruit/index.html?spm=m-277-289-291
  5741. [运行时间:0.820062s] [吞吐率:1.22req/s] [内存消耗:4,810.34kb] [文件加载:158]
  5742. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5743. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5744. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5745. [ info ] [ ROUTE ] array (
  5746. )
  5747. [ info ] [ HEADER ] array (
  5748. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtLcqQ4zVybzX5G38vzm/kOs%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNwxlkL3pSNIOAiZyI2aAdwRyatifZLHdVytl3Y2n5zU0QS4DxoRrcqq0bi49wNDzgsA5Ui3QOsaRvgVMRpnUrp-LfbIxrPoUOVihOMZEEPiE8VaKorh5AcigNldHobiRGcZ0JGy2vp1i0XVKYgjlbpsS4DuEtCv2kdvBxzNX-v0',
  5749. 'accept-language' => 'zh-CN,zh;q=0.9',
  5750. 'accept-encoding' => 'gzip, deflate, br',
  5751. 'referer' => 'https://gaoyx.com/admin.html',
  5752. 'sec-fetch-dest' => 'empty',
  5753. 'sec-fetch-mode' => 'cors',
  5754. 'sec-fetch-site' => 'same-origin',
  5755. 'sec-ch-ua-platform' => '"Windows"',
  5756. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5757. 'sec-ch-ua-mobile' => '?0',
  5758. 'x-requested-with' => 'XMLHttpRequest',
  5759. 'accept' => '*/*',
  5760. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5761. 'connection' => 'keep-alive',
  5762. 'host' => 'gaoyx.com',
  5763. 'content-length' => '',
  5764. 'content-type' => '',
  5765. )
  5766. [ info ] [ PARAM ] array (
  5767. 'spm' => 'm-277-289-291',
  5768. )
  5769. [ info ] [ DB ] INIT mysql
  5770. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\recruit\index.html [ array (
  5771. 0 => 'page',
  5772. 1 => 'list',
  5773. 2 => 'table',
  5774. 3 => 'app',
  5775. 4 => 'request',
  5776. 5 => 'csrf_state',
  5777. 6 => 'csrf_message',
  5778. 7 => 'title',
  5779. 8 => 'pagehtml',
  5780. ) ]
  5781. ---------------------------------------------------------------
  5782. [2023-12-26T14:09:26+08:00] 127.0.0.1 GET gaoyx.com/operate/activity/index.html?spm=m-277-287-288
  5783. [运行时间:0.774067s] [吞吐率:1.29req/s] [内存消耗:4,852.59kb] [文件加载:165]
  5784. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5785. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5786. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5787. [ info ] [ ROUTE ] array (
  5788. )
  5789. [ info ] [ HEADER ] array (
  5790. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGBBy1vbTqEV4JsBRKUw8Ws%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNwxlkL3pSNIOAiZyI2aAdxhxVJ9s2bcAinX_EnhCPRc51Fj_gzsSp486IB_Z96mrURIOw1FmZEfK8TYIeKPJUJOlX8tNu5JaaLIRCTJAMSlaFAYIOWu222uaFbyqKqbInIyQMkZE10IG5KdOipxCAMUuhQYBwKXrnL4ed7Hg1DG',
  5791. 'accept-language' => 'zh-CN,zh;q=0.9',
  5792. 'accept-encoding' => 'gzip, deflate, br',
  5793. 'referer' => 'https://gaoyx.com/admin.html',
  5794. 'sec-fetch-dest' => 'empty',
  5795. 'sec-fetch-mode' => 'cors',
  5796. 'sec-fetch-site' => 'same-origin',
  5797. 'sec-ch-ua-platform' => '"Windows"',
  5798. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5799. 'sec-ch-ua-mobile' => '?0',
  5800. 'x-requested-with' => 'XMLHttpRequest',
  5801. 'accept' => '*/*',
  5802. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5803. 'connection' => 'keep-alive',
  5804. 'host' => 'gaoyx.com',
  5805. 'content-length' => '',
  5806. 'content-type' => '',
  5807. )
  5808. [ info ] [ PARAM ] array (
  5809. 'spm' => 'm-277-287-288',
  5810. )
  5811. [ info ] [ DB ] INIT mysql
  5812. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\activity\index.html [ array (
  5813. 0 => 'page',
  5814. 1 => 'list',
  5815. 2 => 'table',
  5816. 3 => 'app',
  5817. 4 => 'request',
  5818. 5 => 'csrf_state',
  5819. 6 => 'csrf_message',
  5820. 7 => 'sponsor_list',
  5821. 8 => 'title',
  5822. 9 => 'pagehtml',
  5823. ) ]
  5824. ---------------------------------------------------------------
  5825. [2023-12-26T14:09:32+08:00] 127.0.0.1 GET gaoyx.com/operate/recruit/index.html?spm=m-277-289-291
  5826. [运行时间:0.858517s] [吞吐率:1.16req/s] [内存消耗:4,811.89kb] [文件加载:158]
  5827. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5828. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5829. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5830. [ info ] [ ROUTE ] array (
  5831. )
  5832. [ info ] [ HEADER ] array (
  5833. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGBBy1vbTqEV4JsBRKUw8Ws%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNwxlkL3pSNIOAiZyI2aAdxhxVJ9s2bcAinX_EnhCPRc51Fj_gzsSp486IB_Z96mrURIOw1FmZEfK8TYIeKPJUJOlX8tNu5JaaLIRCTJAMSlaFAYIOWu222uaFbyqKqbInIyQMkZE10IG5KdOipxCAMUuhQYBwKXrnL4ed7Hg1DG; page-limit=20',
  5834. 'accept-language' => 'zh-CN,zh;q=0.9',
  5835. 'accept-encoding' => 'gzip, deflate, br',
  5836. 'referer' => 'https://gaoyx.com/admin.html',
  5837. 'sec-fetch-dest' => 'empty',
  5838. 'sec-fetch-mode' => 'cors',
  5839. 'sec-fetch-site' => 'same-origin',
  5840. 'sec-ch-ua-platform' => '"Windows"',
  5841. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5842. 'sec-ch-ua-mobile' => '?0',
  5843. 'x-requested-with' => 'XMLHttpRequest',
  5844. 'accept' => '*/*',
  5845. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5846. 'connection' => 'keep-alive',
  5847. 'host' => 'gaoyx.com',
  5848. 'content-length' => '',
  5849. 'content-type' => '',
  5850. )
  5851. [ info ] [ PARAM ] array (
  5852. 'spm' => 'm-277-289-291',
  5853. )
  5854. [ info ] [ DB ] INIT mysql
  5855. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\recruit\index.html [ array (
  5856. 0 => 'page',
  5857. 1 => 'list',
  5858. 2 => 'table',
  5859. 3 => 'app',
  5860. 4 => 'request',
  5861. 5 => 'csrf_state',
  5862. 6 => 'csrf_message',
  5863. 7 => 'title',
  5864. 8 => 'pagehtml',
  5865. ) ]
  5866. ---------------------------------------------------------------
  5867. [2023-12-26T14:09:34+08:00] 127.0.0.1 GET gaoyx.com/operate/platform_demand/index.html?spm=m-277-292-297
  5868. [运行时间:0.586825s] [吞吐率:1.70req/s] [内存消耗:4,457.88kb] [文件加载:158]
  5869. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5870. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5871. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5872. [ info ] [ ROUTE ] array (
  5873. )
  5874. [ info ] [ HEADER ] array (
  5875. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGBBy1vbTqEV4JsBRKUw8Ws%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNwxlkL3pSNIOAiZyI2aAdxhxVJ9s2bcAinX_EnhCPRc51Fj_gzsSp486IB_Z96mrURIOw1FmZEfK8TYIeKPJUJOlX8tNu5JaaLIRCTJAMSlaFAYIOWu222uaFbyqKqbInIyQMkZE10IG5KdOipxCAMUuhQYBwKXrnL4ed7Hg1DG; page-limit=20',
  5876. 'accept-language' => 'zh-CN,zh;q=0.9',
  5877. 'accept-encoding' => 'gzip, deflate, br',
  5878. 'referer' => 'https://gaoyx.com/admin.html',
  5879. 'sec-fetch-dest' => 'empty',
  5880. 'sec-fetch-mode' => 'cors',
  5881. 'sec-fetch-site' => 'same-origin',
  5882. 'sec-ch-ua-platform' => '"Windows"',
  5883. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5884. 'sec-ch-ua-mobile' => '?0',
  5885. 'x-requested-with' => 'XMLHttpRequest',
  5886. 'accept' => '*/*',
  5887. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5888. 'connection' => 'keep-alive',
  5889. 'host' => 'gaoyx.com',
  5890. 'content-length' => '',
  5891. 'content-type' => '',
  5892. )
  5893. [ info ] [ PARAM ] array (
  5894. 'spm' => 'm-277-292-297',
  5895. )
  5896. [ info ] [ DB ] INIT mysql
  5897. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\platform_demand\index.html [ array (
  5898. 0 => 'page',
  5899. 1 => 'list',
  5900. 2 => 'table',
  5901. 3 => 'app',
  5902. 4 => 'request',
  5903. 5 => 'csrf_state',
  5904. 6 => 'csrf_message',
  5905. 7 => 'title',
  5906. 8 => 'pagehtml',
  5907. ) ]
  5908. ---------------------------------------------------------------
  5909. [2023-12-26T14:10:29+08:00] 127.0.0.1 GET gaoyx.com/admin.html
  5910. [运行时间:1.735197s] [吞吐率:0.58req/s] [内存消耗:14,917.52kb] [文件加载:337]
  5911. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5912. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5913. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5914. [ info ] [ ROUTE ] array (
  5915. )
  5916. [ info ] [ HEADER ] array (
  5917. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGBBy1vbTqEV4JsBRKUw8Ws%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNwxlkL3pSNIOAiZyI2aAdxhxVJ9s2bcAinX_EnhCPRc51Fj_gzsSp486IB_Z96mrURIOw1FmZEfK8TYIeKPJUJOlX8tNu5JaaLIRCTJAMSlaFAYIOWu222uaFbyqKqbInIyQMkZE10IG5KdOipxCAMUuhQYBwKXrnL4ed7Hg1DG',
  5918. 'accept-language' => 'zh-CN,zh;q=0.9',
  5919. 'accept-encoding' => 'gzip, deflate, br',
  5920. 'referer' => 'https://gaoyx.com/admin/login.html',
  5921. 'sec-fetch-dest' => 'document',
  5922. 'sec-fetch-user' => '?1',
  5923. 'sec-fetch-mode' => 'navigate',
  5924. 'sec-fetch-site' => 'same-origin',
  5925. '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',
  5926. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5927. 'upgrade-insecure-requests' => '1',
  5928. 'sec-ch-ua-platform' => '"Windows"',
  5929. 'sec-ch-ua-mobile' => '?0',
  5930. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5931. 'cache-control' => 'max-age=0',
  5932. 'connection' => 'keep-alive',
  5933. 'host' => 'gaoyx.com',
  5934. 'content-length' => '',
  5935. 'content-type' => '',
  5936. )
  5937. [ info ] [ PARAM ] array (
  5938. )
  5939. [ info ] [ DB ] INIT mysql
  5940. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\admin\view\index\index.html [ array (
  5941. 0 => 'app',
  5942. 1 => 'request',
  5943. 2 => 'csrf_state',
  5944. 3 => 'csrf_message',
  5945. 4 => 'title',
  5946. 5 => 'menus',
  5947. ) ]
  5948. ---------------------------------------------------------------
  5949. [2023-12-26T14:10:30+08:00] 127.0.0.1 GET gaoyx.com/operate/platform_demand/index.html?spm=m-277-292-297
  5950. [运行时间:0.592043s] [吞吐率:1.69req/s] [内存消耗:4,458.77kb] [文件加载:158]
  5951. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5952. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5953. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5954. [ info ] [ ROUTE ] array (
  5955. )
  5956. [ info ] [ HEADER ] array (
  5957. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGBBy1vbTqEV4JsBRKUw8Ws%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtNwxlkL3pSNIOAiZyI2aAdxhxVJ9s2bcAinX_EnhCPRc51Fj_gzsSp486IB_Z96mrURIOw1FmZEfK8TYIeKPJUJOlX8tNu5JaaLIRCTJAMSlaFAYIOWu222uaFbyqKqbInIyQMkZE10IG5KdOipxCAMUuhQYBwKXrnL4ed7Hg1DG',
  5958. 'accept-language' => 'zh-CN,zh;q=0.9',
  5959. 'accept-encoding' => 'gzip, deflate, br',
  5960. 'referer' => 'https://gaoyx.com/admin.html',
  5961. 'sec-fetch-dest' => 'empty',
  5962. 'sec-fetch-mode' => 'cors',
  5963. 'sec-fetch-site' => 'same-origin',
  5964. 'sec-ch-ua-platform' => '"Windows"',
  5965. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  5966. 'sec-ch-ua-mobile' => '?0',
  5967. 'x-requested-with' => 'XMLHttpRequest',
  5968. 'accept' => '*/*',
  5969. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  5970. 'connection' => 'keep-alive',
  5971. 'host' => 'gaoyx.com',
  5972. 'content-length' => '',
  5973. 'content-type' => '',
  5974. )
  5975. [ info ] [ PARAM ] array (
  5976. 'spm' => 'm-277-292-297',
  5977. )
  5978. [ info ] [ DB ] INIT mysql
  5979. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\operate\view\platform_demand\index.html [ array (
  5980. 0 => 'page',
  5981. 1 => 'list',
  5982. 2 => 'table',
  5983. 3 => 'app',
  5984. 4 => 'request',
  5985. 5 => 'csrf_state',
  5986. 6 => 'csrf_message',
  5987. 7 => 'title',
  5988. 8 => 'pagehtml',
  5989. ) ]
  5990. ---------------------------------------------------------------
  5991. [2023-12-26T14:11:06+08:00] 127.0.0.1 GET gaoyx.com/synth/bill_type/index.html?spm=m-307-308-309
  5992. [运行时间:0.426227s] [吞吐率:2.35req/s] [内存消耗:4,187.52kb] [文件加载:154]
  5993. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  5994. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  5995. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  5996. [ info ] [ ROUTE ] array (
  5997. )
  5998. [ info ] [ HEADER ] array (
  5999. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGFeERctIlrfYn+flFqtMao%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtHrYOINn0EXYgI-1gHL6fNIuAbyOhZkAjq7yS8Y46KBeajV0wuPQmREPKU6dQYR7XVUwGPNRUVGAikX7Viqv38oc3bU58TD1uh1Nn3z5AycrRxd7TUP1oCItezg0383-XzfFuVlvnedSfCg5Ckb_X7CjNMFYtJLaPQvbVV2Cyora',
  6000. 'accept-language' => 'zh-CN,zh;q=0.9',
  6001. 'accept-encoding' => 'gzip, deflate, br',
  6002. 'referer' => 'https://gaoyx.com/admin.html',
  6003. 'sec-fetch-dest' => 'empty',
  6004. 'sec-fetch-mode' => 'cors',
  6005. 'sec-fetch-site' => 'same-origin',
  6006. 'sec-ch-ua-platform' => '"Windows"',
  6007. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  6008. 'sec-ch-ua-mobile' => '?0',
  6009. 'x-requested-with' => 'XMLHttpRequest',
  6010. 'accept' => '*/*',
  6011. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  6012. 'connection' => 'keep-alive',
  6013. 'host' => 'gaoyx.com',
  6014. 'content-length' => '',
  6015. 'content-type' => '',
  6016. )
  6017. [ info ] [ PARAM ] array (
  6018. 'spm' => 'm-307-308-309',
  6019. )
  6020. [ info ] [ DB ] INIT mysql
  6021. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\synth\view\bill_type\index.html [ array (
  6022. 0 => 'list',
  6023. 1 => 'table',
  6024. 2 => 'app',
  6025. 3 => 'request',
  6026. 4 => 'csrf_state',
  6027. 5 => 'csrf_message',
  6028. 6 => 'title',
  6029. ) ]
  6030. ---------------------------------------------------------------
  6031. [2023-12-26T14:11:08+08:00] 127.0.0.1 GET gaoyx.com/synth/bill_apply/index.html?spm=m-307-308-324
  6032. [运行时间:0.780671s] [吞吐率:1.28req/s] [内存消耗:4,853.13kb] [文件加载:166]
  6033. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  6034. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  6035. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  6036. [ info ] [ ROUTE ] array (
  6037. )
  6038. [ info ] [ HEADER ] array (
  6039. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGFeERctIlrfYn+flFqtMao%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtHrYOINn0EXYgI-1gHL6fNIuAbyOhZkAjq7yS8Y46KBeajV0wuPQmREPKU6dQYR7XVUwGPNRUVGAikX7Viqv38oc3bU58TD1uh1Nn3z5AycrRxd7TUP1oCItezg0383-XzfFuVlvnedSfCg5Ckb_X7CjNMFYtJLaPQvbVV2Cyora',
  6040. 'accept-language' => 'zh-CN,zh;q=0.9',
  6041. 'accept-encoding' => 'gzip, deflate, br',
  6042. 'referer' => 'https://gaoyx.com/admin.html',
  6043. 'sec-fetch-dest' => 'empty',
  6044. 'sec-fetch-mode' => 'cors',
  6045. 'sec-fetch-site' => 'same-origin',
  6046. 'sec-ch-ua-platform' => '"Windows"',
  6047. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  6048. 'sec-ch-ua-mobile' => '?0',
  6049. 'x-requested-with' => 'XMLHttpRequest',
  6050. 'accept' => '*/*',
  6051. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  6052. 'connection' => 'keep-alive',
  6053. 'host' => 'gaoyx.com',
  6054. 'content-length' => '',
  6055. 'content-type' => '',
  6056. )
  6057. [ info ] [ PARAM ] array (
  6058. 'spm' => 'm-307-308-324',
  6059. )
  6060. [ info ] [ DB ] INIT mysql
  6061. [ info ] [ VIEW ] D:\project\gyx\gaoyixia\application\synth\view\bill_apply\index.html [ array (
  6062. 0 => 'page',
  6063. 1 => 'list',
  6064. 2 => 'table',
  6065. 3 => 'app',
  6066. 4 => 'request',
  6067. 5 => 'csrf_state',
  6068. 6 => 'csrf_message',
  6069. 7 => 'title',
  6070. 8 => 'type_arr',
  6071. 9 => 'order_type',
  6072. 10 => 'pagehtml',
  6073. ) ]
  6074. ---------------------------------------------------------------
  6075. [2023-12-26T14:16:03+08:00] 127.0.0.1 POST gaoyx.com/api/Expedite/getTotalMarkNum
  6076. [运行时间:1.358996s] [吞吐率:0.74req/s] [内存消耗:5,805.62kb] [文件加载:155]
  6077. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  6078. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  6079. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  6080. [ info ] [ ROUTE ] array (
  6081. )
  6082. [ info ] [ HEADER ] array (
  6083. 'content-length' => '0',
  6084. 'host' => 'gaoyx.com',
  6085. 'connection' => 'keep-alive',
  6086. 'accept-encoding' => 'gzip, deflate, br',
  6087. 'accept' => '*/*',
  6088. 'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjE1NjYsImlzcyI6Imh0dHBzOlwvXC96YWluLmNvbSIsImF1ZCI6Imh0dHBzOlwvXC96YWluLmNvbSIsImlhdCI6MTcwMzU3MDk2OSwibmJmIjoxNzAzNTcwOTY5LCJleHAiOjE3MTc5NzA5NjksImZhY2lsaXR5X2NvZGUiOiIyODYzNDc1ZDQwNjg0YTkxODJhYmY1Y2MxNjU5NWJkNyIsImxvZ2luX3R5cGUiOiIyIn0.6ANKPC4qTNirgo2FfrRmpXLhdg-pg4IDp6fKudxNG6Q',
  6089. 'cache-control' => 'no-cache',
  6090. 'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
  6091. 'content-type' => '',
  6092. )
  6093. [ info ] [ PARAM ] array (
  6094. )
  6095. [ info ] [ DB ] INIT mysql
  6096. ---------------------------------------------------------------
  6097. [2023-12-26T14:17:11+08:00] 127.0.0.1 GET gaoyx.com/apidoc/config
  6098. [运行时间:0.041279s] [吞吐率:24.23req/s] [内存消耗:2,387.30kb] [文件加载:130]
  6099. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  6100. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  6101. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  6102. [ info ] [ ROUTE ] array (
  6103. 'rule' => 'apidoc/config',
  6104. 'route' => '\\hg\\apidoc\\Controller@getConfig',
  6105. 'option' =>
  6106. array (
  6107. 'merge_rule_regex' => false,
  6108. ),
  6109. 'var' =>
  6110. array (
  6111. ),
  6112. )
  6113. [ info ] [ HEADER ] array (
  6114. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGFeERctIlrfYn+flFqtMao%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtHrYOINn0EXYgI-1gHL6fNIuAbyOhZkAjq7yS8Y46KBeajV0wuPQmREPKU6dQYR7XVUwGPNRUVGAikX7Viqv38oc3bU58TD1uh1Nn3z5AycrRxd7TUP1oCItezg0383-XzfFuVlvnedSfCg5Ckb_X7CjNMFYtJLaPQvbVV2Cyora',
  6115. 'accept-language' => 'zh-CN,zh;q=0.9',
  6116. 'accept-encoding' => 'gzip, deflate, br',
  6117. 'referer' => 'https://gaoyx.com/apidoc/?appKey=V1.0',
  6118. 'sec-fetch-dest' => 'empty',
  6119. 'sec-fetch-mode' => 'cors',
  6120. 'sec-fetch-site' => 'same-origin',
  6121. 'sec-ch-ua-platform' => '"Windows"',
  6122. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  6123. 'sec-ch-ua-mobile' => '?0',
  6124. 'accept' => 'application/json, text/plain, */*',
  6125. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  6126. 'connection' => 'keep-alive',
  6127. 'host' => 'gaoyx.com',
  6128. 'content-length' => '',
  6129. 'content-type' => '',
  6130. )
  6131. [ info ] [ PARAM ] array (
  6132. )
  6133. ---------------------------------------------------------------
  6134. [2023-12-26T14:17:11+08:00] 127.0.0.1 GET gaoyx.com/apidoc/data?appKey=V1.0&version=V1.0&cacheFileName=&reload=false
  6135. [运行时间:0.095217s] [吞吐率:10.50req/s] [内存消耗:7,793.70kb] [文件加载:169]
  6136. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
  6137. [ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
  6138. [ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
  6139. [ info ] [ ROUTE ] array (
  6140. 'rule' => 'apidoc/data',
  6141. 'route' => '\\hg\\apidoc\\Controller@getList',
  6142. 'option' =>
  6143. array (
  6144. 'merge_rule_regex' => false,
  6145. ),
  6146. 'var' =>
  6147. array (
  6148. ),
  6149. )
  6150. [ info ] [ HEADER ] array (
  6151. 'cookie' => 'PHPSESSID=jsmdq5lk8ujgepnl5qu1343ojf; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtGFeERctIlrfYn+flFqtMao%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtHrYOINn0EXYgI-1gHL6fNIuAbyOhZkAjq7yS8Y46KBeajV0wuPQmREPKU6dQYR7XVUwGPNRUVGAikX7Viqv38oc3bU58TD1uh1Nn3z5AycrRxd7TUP1oCItezg0383-XzfFuVlvnedSfCg5Ckb_X7CjNMFYtJLaPQvbVV2Cyora',
  6152. 'accept-language' => 'zh-CN,zh;q=0.9',
  6153. 'accept-encoding' => 'gzip, deflate, br',
  6154. 'referer' => 'https://gaoyx.com/apidoc/?appKey=V1.0',
  6155. 'sec-fetch-dest' => 'empty',
  6156. 'sec-fetch-mode' => 'cors',
  6157. 'sec-fetch-site' => 'same-origin',
  6158. 'sec-ch-ua-platform' => '"Windows"',
  6159. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
  6160. 'sec-ch-ua-mobile' => '?0',
  6161. 'accept' => 'application/json, text/plain, */*',
  6162. 'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
  6163. 'connection' => 'keep-alive',
  6164. 'host' => 'gaoyx.com',
  6165. 'content-length' => '',
  6166. 'content-type' => '',
  6167. )
  6168. [ info ] [ PARAM ] array (
  6169. 'appKey' => 'V1.0',
  6170. 'version' => 'V1.0',
  6171. 'cacheFileName' => '',
  6172. 'reload' => 'false',
  6173. )