乐于分享
好东西不私藏

全网最稳!全自动多周期智能通道指标EA源码

全网最稳!全自动多周期智能通道指标EA源码
大家好,我是EA侠。
不知道大家有没有发现一件事情,市面上普通的通道指标,都是单周期画线、乱画线、滞后严重,根本没法用。
所以侠哥今天给大家带来一个真正的硬核神器,也是我自己一直在用的:全自动多周期智能通道指标

它不是那种花里胡哨的垃圾指标,它的底层是最小二乘法加权算法,不用你手动画线、不用你调参数、不用你找高低点,全程全自动识别有效趋势通道

它最大的核心亮点,就是支持九周期全周期共振扫描

从一分钟、五分钟、十五分钟,一直到小时线、日线、周线、月线,全周期同时运算!大周期帮你定整体趋势方向,小周期帮你抓精准入场点位,多周期通道重合,就是高概率稳定行情

而且它自带专业级多重过滤,彻底杜绝无效通道、杂波行情。

自带黄金分割过滤、通道宽度过滤、极值高低点过滤,太窄、太宽、不稳定的垃圾通道,它直接帮你过滤掉,只留给你高胜率有效通道

趋势行情,你可以开启极值模式,通道紧贴高低点,完美跟随趋势走完全程;震荡行情,用等宽通道模式,上轨压力高抛、下轨支撑低吸,买卖位置一目了然。

可视化做得也特别舒服,自动上色、自动填充通道区间、自动画趋势辅助线,整张盘面干净清晰,新手一眼看懂支撑压力,老手直接用来共振抓拐点

源码侠哥放下面了,需要你们解析一下,不会的可以问侠哥:wzc10106
#property strict#property copyright ""classCDebuggerFix{ } ExtDebuggerFix;#property  indicator_chart_window#property  indicator_buffers 2//---- indicator parametersextern int     StartBar    =  0;         // from what point the data analysis begins, 0 - from the current one.extern int     BarAnalys   =  400;       // the number of bars for analysis in each period up to and including daytime. Not more than 2000!extern double  k_width     =  4;         // channel width factorextern int     accuracy    =  50;        // accuracy of modeling 1-no accuracy, if BarAnalys-max. accuracy. The higher the accuracy, the slower the indicatorextern double  Filter      =  0.55;      // filter the depth of forming a new channel, it is advisable to use the range 0.382-0.618extern double  MinWidth    =  0;         // the minimum average weighted channel width in points, (with smaller width channels will not be formed)extern double  MaxWidth    =  10000;     // the maximum average weighted channel width in points, (with a wider width channels will not be formed)extern bool    Ray         =  true;      // a sign of continuation of the channel; true - ray, false - segmentextern bool    MaxMin      =  true;      // To build a channel taking into account extreme extremes?                                         // -true - Yes. For the construction to pass through extreme extremes, the width coefficient k_width should be large, for example 100                                         // -false - No. In this case, the upper and lower boundary of the channel is equidistant from the central axis of the channel (the center of the "mass")extern bool    color_fill  =  true;      // Fill channels?//---- indicator buffersdouble     Channels[1000];double     Wid[];double     Vertical[];double     Width[2000];double     WidthU[2000];double     WidthD[2000];double     ChannelR[2000];double     ChannelL[2000];double     Channel[20][9];int preBars=0;int p[9]={43200,10080,1440,240,60,30,15,5,1};int FinishL;int tick=0;int bar=0;int b=0;int key=0;double sumPlus=0;double sumMinus=0;double yOptR,yOptL;int prexL=0;int prexR=0;double ma=0;int  prevxR=-5;int  prevp=0;int prevper=-5;double sum1=0;double sum2=0;double curdeltaMax=-10000;double curdeltaMin=10000;int Start=0;//+------------------------------------------------------------------+//|                                                                  |//+------------------------------------------------------------------+void OnDeinit(const int reason)  {   Comment("");   ObjectDelete("channels_start");   for(int i=0;i<20;i++)     {      ObjectDelete("LineChannel9_"+DoubleToStr(i,0));      ObjectDelete("LineChannel9_"+DoubleToStr(i,0)+" UP");      ObjectDelete("LineChannel9_"+DoubleToStr(i,0)+" DOWN");      ObjectDelete("LineChannel9_"+DoubleToStr(i,0)+" TRIUP");      ObjectDelete("LineChannel9_"+DoubleToStr(i,0)+" TRIDown");      ObjectDelete("Vertical_9_"+DoubleToStr(i,0));     }  }//+------------------------------------------------------------------+//| Custom indicator initialization function                         |//+------------------------------------------------------------------+int OnInit()  {//---- drawing settings   IndicatorDigits(Digits+1);//---- indicator buffers mapping   ChartSetInteger(0,CHART_EVENT_MOUSE_MOVE,true);   SetIndexStyle(0,DRAW_NONE);   SetIndexStyle(1,DRAW_NONE);   IndicatorDigits(Digits+1);//---- indicator buffers mapping   SetIndexBuffer(0,Wid);   SetIndexBuffer(1,Vertical);//---- indicator buffers mapping// SetIndexBuffer(0,Canals);//   IndicatorDigits(20);//---- initialization done   return(INIT_SUCCEEDED);  }//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////int OnCalculate(const int rates_total,                const int prev_calculated,                const datetime &time[],                const double &open[],                const double &high[],                const double &low[],                const double &close[],                const long &tick_volume[],                const long &volume[],                const int &spread[])  {//LoadHist();   int i;   if(StartBar!=0 && Start==0) Start=StartBar;   int j=AllChannels();   Channels[0]=j;                                       //Number of generated channels   if(j>0)     {      for(i=0; i<j; i++)        {         Channels[7*i+1] = Channel[i][0];                //Width         Channels[7*i+2] = Channel[i][1];                //The current i-left channel boundary         Channels[7*i+3] = Channel[i][2];                //Channel formation period         Channels[7*i+4] = Channel[i][3];                //yOptR         Channels[7*i+5] = Channel[i][4];                //yOptL         Channels[7*i+6] = Channel[i][5]/Point;          //increment in points per bar every minute or channel angle, positive-up, negative-down         Channels[7*i+7] = Channel[i][6];                //length in current period bars         Channels[7*i+8] = Channel[i][7];                //Width Up         Channels[7*i+9] = Channel[i][8];                //Width Doun        }      BildCanals(j);     }   return(rates_total);  }//+------------------------------------------------------------------+//|                                                                  |//+------------------------------------------------------------------+void OnChartEvent(const int id,                  const long &lparam,                  const double &dparam,                  const string &sparam)  {   double y;   int j,i;   int      window=0;   datetime ttt;   if(id==CHARTEVENT_KEYDOWN) key=(int)lparam;   if(id==CHARTEVENT_MOUSE_MOVE && key==17)// pressed the CTRL key     {      ChartXYToTimePrice(0,(int)lparam,(int)dparam,window,ttt,y);      if(ttt!=0) Start=iBarShift(NULL,0,ttt,false);      j=AllChannels();      Channels[0]=j;                                     //Number of generated channels      if(j>0)        {         for(i=0; i<j; i++)           {            Channels[7*i+1] = Channel[i][0];                //Width            Channels[7*i+2] = Channel[i][1];                //The current i-left channel boundary            Channels[7*i+3] = Channel[i][2];                //Channel formation period            Channels[7*i+4] = Channel[i][3];                //yOptR            Channels[7*i+5] = Channel[i][4];                //yOptL            Channels[7*i+6] = Channel[i][5]/Point;          //increment in points per bar every minute or channel angle, positive-up, negative-down            Channels[7*i+7] = Channel[i][6];                //length in current period bars            Channels[7*i+8] = Channel[i][7];                //Width Up            Channels[7*i+9] = Channel[i][8];                //Width Doun           }         BildCanals(j);        }     }  }//+------------------------------------------------------------------+///////////////////////////// Functions/////////////////////////////////+------------------------------------------------------------------+int BildCanals(int j)//Data about the channels are in the array Channel[20][7]  {   string name;   datetime x1,x2;   double y1,y2;   int i;   int  color_i2[40]= //     {      0x339966,0xFF33CC,0x3399FF,0xFF9920,0x993333,0xFF0066,0x66CCFF,0x9933CC,0x336600,0x006699,      0xCC0099,0x33CCCC,0x6633FF,0x00FF66,0xCC99FF,0x3333FF,0x666633,0xCC66CC,0x00CCFF,0x996666,      0xFF6666,0x0000FF,0xCC6666,0x006600,0x660099,0x66FF66,0xFFCC00,0x6666FF,0xFFFF33,0xCC0000,      0x33FFFF,0xCC33FF,0x33FF33,0x9999FF,0x996600,0x333399,0x99CC99,0x0066CC,0xCC9900,0x00CCCC    };   int color_i[40]=    {      0x194C33,0x7F1966,0x14C97F,0x7F4C10,0x4C1919,0x7F0033,0x33667F,0x4C1966,0x193300,0x00334C,      0x66004C,0x196666,0x33197F,0x007F33,0x664C7F,0x19197F,0x333319,0x663366,0x00667F,0x4C3333,      0x7F3333,0x00007F,0x663333,0x003300,0x33004C,0x337F33,0x7F6600,0x33337F,0x7F7F19,0x660000,      0x197F7F,0x66197F,0x197F19,0x4C4C7F,0x4C3300,0x1914C9,0x466C4C,0x003366,0x664C00,0x006666    };   for(i=j;i<20;i++)     {      ObjectDelete("LineChannel9_"+DoubleToStr(i,0));      ObjectDelete("LineChannel9_"+DoubleToStr(i,0)+" UP");      ObjectDelete("LineChannel9_"+DoubleToStr(i,0)+" DOWN");      ObjectDelete("Vertical_9_"+DoubleToStr(i,0));      ObjectDelete("LineChannel9_"+DoubleToStr(i,0)+" TRIUP");      ObjectDelete("LineChannel9_"+DoubleToStr(i,0)+" TRIDown");      Channel[i][2]=0;      Channel[i][1]=0;      Channel[i][0]=0;     }// Comment("Number of channels = ",j);// string comm="Number of channels = ";// comm=comm+(string)j;// for(i=0; i<j; i++)//   { comm=comm+"\n"+"Channel № "+DoubleToStr((i+1),0)+" : Width - "+DoubleToStr(Channel[i][0],0)+", channel length -  "+DoubleToStr(Channel[i][6],0)+" bars for the period "+DoubleToStr(Channel[i][2],0);}// Comment(comm);   for(i=0; i<j; i++)     {      x1 = iTime(NULL,0,Start);      y1 = Channel[i][3];      y2 = Channel[i][4];      if(iTime(NULL,0,(Bars-1))<=iTime(NULL,(int)Channel[i][2],(int)Channel[i][1]))        {         x2=iTime(NULL,(int)Channel[i][2],(int)Channel[i][1]);        }      else        {         x2=iTime(NULL,0,(Bars-1));         if(Channel[i][6]!=0) y2=y1-((iBarShift(NULL,(int)Channel[i][2],x2,FALSE)-iBarShift(NULL,(int)Channel[i][2],x1,FALSE))/Channel[i][6])*(y1-Channel[i][4]);        }      name="LineChannel9_"+DoubleToStr(i,0);      if(ObjectFind(name)==-1)        {         if(!ObjectCreate(name,OBJ_TREND,0,x2,y2,x1,y1)) Comment("Error 0 = ",GetLastError());         ObjectSet(name,OBJPROP_RAY,FALSE);         ObjectSet(name,OBJPROP_COLOR,color_i[i]);         ObjectSet(name,OBJPROP_STYLE,STYLE_DOT);         ObjectSet(name,OBJPROP_RAY,Ray);         if(MaxMin==true)            ObjectCreate(name+" UP",OBJ_TREND,0,x2,(y2+Point*Channel[i][7]),x1,(y1+Point*Channel[i][7]));         else            ObjectCreate(name+" UP",OBJ_TREND,0,x2,(y2+k_width*Point*Channel[i][0]),x1,(y1+k_width*Point*Channel[i][0]));         ObjectSet(name+" UP",OBJPROP_RAY,FALSE);         ObjectSet(name+" UP",OBJPROP_COLOR,color_i[i]);         ObjectSet(name+" UP",OBJPROP_STYLE,STYLE_DASH);         ObjectSet(name+" UP",OBJPROP_RAY,Ray);         if(MaxMin==true)            ObjectCreate(name+" DOWN",OBJ_TREND,0,x2,(y2+Point*Channel[i][8]),x1,(y1+Point*Channel[i][8]));         else            ObjectCreate(name+" DOWN",OBJ_TREND,0,x2,(y2-k_width*Point*Channel[i][0]),x1,(y1-k_width*Point*Channel[i][0]));         ObjectSet(name+" DOWN",OBJPROP_RAY,FALSE);         ObjectSet(name+" DOWN",OBJPROP_COLOR,color_i[i]);         ObjectSet(name+" DOWN",OBJPROP_STYLE,STYLE_DASH);         ObjectSet(name+" DOWN",OBJPROP_RAY,Ray);         if(color_fill==true)           {            ObjectCreate(name+" TRIUP",OBJ_TRIANGLE,0,x2,(y2+Point*Channel[i][7]),x1,(y1+Point*Channel[i][7]),x2,(y2+Point*Channel[i][8]));            ObjectSet(name+" TRIUP",OBJPROP_COLOR,color_i2[i]);            ObjectCreate(name+" TRIDown",OBJ_TRIANGLE,0,x1,(y1+Point*Channel[i][7]),x1,(y1+Point*Channel[i][8]),x2,(y2+Point*Channel[i][8]));            ObjectSet(name+" TRIDown",OBJPROP_COLOR,color_i2[i]);           }         if(!ObjectCreate("Vertical_9_"+DoubleToStr(i,0),OBJ_VLINE,0,x2,8)) Comment("Ошибка 0 = ",GetLastError());         ObjectSet("Vertical_9_"+DoubleToStr(i,0),OBJPROP_COLOR,color_i[i]);         ObjectSet("Vertical_9_"+DoubleToStr(i,0),OBJPROP_STYLE,STYLE_DOT);        }      else        {         if(!ObjectMove(name,0,x2,y2)) Comment("Ошибка 1 = ",GetLastError());         if(!ObjectMove(name,1,x1,y1)) Comment("Ошибка 2 = ",GetLastError());         if(MaxMin==true)           {            ObjectMove(name+" UP",0,x2,y2+Point*Channel[i][7]);            ObjectMove(name+" UP",1,x1,y1+Point*Channel[i][7]);            ObjectMove(name+" DOWN",0,x2,y2+Point*Channel[i][8]);            ObjectMove(name+" DOWN",1,x1,y1+Point*Channel[i][8]);            if(color_fill==true)              {               ObjectMove(name+" TRIUP",0,x2,(y2+Point*Channel[i][7]));               ObjectMove(name+" TRIUP",1,x1,(y1+Point*Channel[i][7]));               ObjectMove(name+" TRIUP",2,x2,(y2+Point*Channel[i][8]));               ObjectMove(name+" TRIDown",0,x1,(y1+Point*Channel[i][7]));               ObjectMove(name+" TRIDown",1,x1,(y1+Point*Channel[i][8]));               ObjectMove(name+" TRIDown",2,x2,(y2+Point*Channel[i][8]));              }           }         else           {            ObjectMove(name+" UP",0,x2,y2+k_width*Point*Channel[i][0]);            ObjectMove(name+" UP",1,x1,y1+k_width*Point*Channel[i][0]);            ObjectMove(name+" DOWN",0,x2,y2-k_width*Point*Channel[i][0]);            ObjectMove(name+" DOWN",1,x1,y1-k_width*Point*Channel[i][0]);           }        }     }   return(0);  }////////////////////////////////////////////////////////int AllChannels()  {   int i1=0,i2,i3,jj,sdv,err=0;   int k=0;   int i=0;   int lastper;   int St,Fin;   datetime S,F,prevS,CurStart;   int lastmin;   double lmin=1000000;   double premin=0;   lastper=9;   CurStart=iTime(NULL,Period(),Start);   if(Start==0) CurStart=iTime(NULL,1,0);   int l5=iBarShift(NULL,p[0],CurStart,FALSE)+BarAnalys;   if(iBars(NULL,p[0])<l5) l5=iBars(NULL,p[0])-1;   prevS=iTime(NULL,p[0],l5);   if(prevS==0) {err=GetLastError(); Print("Error iTime ",err," ",(iBarShift(NULL,p[0],CurStart,FALSE)));}   ArrayInitialize(Vertical,0);   ArrayInitialize(Wid,0);   for(jj=0;jj<lastper;jj++)     {      if(jj==8) // if the minute period         S = CurStart;      else S=iTime(NULL,p[jj+1],(iBarShift(NULL,p[jj+1],CurStart,FALSE)+BarAnalys));      F=prevS;      prevS=S;      St=iBarShift(NULL,p[jj],CurStart,FALSE);      Fin=iBarShift(NULL,p[jj],F,FALSE);      if(St==0 && Fin==0)  return(0);      sdv=(iBarShift(NULL,p[jj],S,FALSE))-St-7;      if(jj!=8) {ArrWidth(St,Fin,sdv,p[jj]); }      else  {ArrWidth(St,Fin,0,p[jj]);}      lastmin=Fin+1;      if(jj==0) lmin=10000000;      if(jj==0) premin=Width[Fin-St-1];      if(Fin>iBarShift(NULL,p[jj],S,FALSE))         for(i=Fin-1; i>(iBarShift(NULL,p[jj],S,FALSE))-1; i--)           {            int hhh=iBarShift(NULL,p[jj],S,FALSE);            if(iTime(NULL,0,Bars-1)<=iTime(NULL,p[jj],i))              {               i3=iBarShift(NULL,0,iTime(NULL,p[jj],i),FALSE);               for(i2=0;i2<=p[jj]/Period();i2++)                 {                  if((i3-i2)>=0) Wid[i3-i2]=Width[i-St];                  if(i!=St && Wid[i3-i2]==0)                    {                     printf("width for some reason is zero");                    }                 }              }            if(Width[i-St]<lmin) {lmin=Width[i-St];lastmin=i;}            if(i>St) if(Width[i-St]<=Width[i-St-1] && Width[i-St]<=Width[i-St+1])               if(lastmin==i)                 {                  if(Width[i-St]<premin*Filter && Width[i-St]>MinWidth && Width[i-St]<MaxWidth)                    {                     if(i1>0for(k=0; k<i1; k++)                       {                        if(Width[i-St]!=0if((Channel[k][0]/Width[i-St])<1.2 && (Channel[k][0]/Width[i-St])>0.8) i1=k;                       }                     if(iTime(NULL,0,Bars-1)<=iTime(NULL,p[jj],i)) Vertical[i3]=Width[i-St];                     Channel[i1][0]= Width[i-St];                                //Width Up                     Channel[i1][1]= i;                                          //The current i-left channel boundary                     Channel[i1][2]= p[jj];                                      //Period                     Channel[i1][3]= ChannelR[i-St];                             //yOptR                     Channel[i1][4]= ChannelL[i-St];                             //yOptL                     if((i-St)*p[jj]!=0                     Channel[i1][5]=(ChannelR[i-St]-ChannelL[i-St])/((i-St)*p[jj]);  //bar increment                     Channel[i1][6]=(i-St);                                      //length in bars                     Channel[i1][7]= WidthU[i-St];                               //Width Up                     Channel[i1][8]= WidthD[i-St];                               //Width Down                     premin=Width[i-St];                     i1++;                    }                 }           }     }   return(i1);  }//////////////////////////////////////////////////////////////////////double ArrWidth(int Start1,int Finish,int Sdvig,int per) // constructing an array of the width of the central line from Start1 to Finish  {   Width[0]=0;   if(Sdvig<0) Sdvig=0;   yOptR=iOpen(NULL,per,Start1);   int d,i1,i;   double dC,dR,dL;   int p1=0;   int lnz=Sdvig;   for(i=(1+Sdvig); i<(Finish-Start1); i++)     {      if(accuracy!=0) p1=(int)MathFloor((i-1)/accuracy);      i=i+p1;      Width[i]=MinChannel2(Start1,i+Start1,per);     // if(Width[i]<1) Print(per," ",Start1," ",i+Start1);      if(MaxMin==true)        {         if( k_width*Width[i]<curdeltaMax/Point) WidthU[i]=(curdeltaMax/Point+k_width*Width[i])/2else WidthU[i]=curdeltaMax/Point;         if(-k_width*Width[i]>curdeltaMin/Point) WidthD[i]=(curdeltaMin/Point-k_width*Width[i])/2else WidthD[i]=curdeltaMin/Point;        }      ChannelL[i]  = yOptL;      ChannelR[i]  = yOptR;      d=i-lnz;      if(d!=0)        {         dC=(Width[i]-Width[lnz])/d;         dR=(ChannelR[i]-ChannelR[lnz])/d;         dL=(ChannelL[i]-ChannelL[lnz])/d;        }      else {dC=0;dR=0; dL=0;}      if(d>1)         for(i1=1;i1<d;i1++)           {            Width[lnz+i1]=Width[lnz+i1-1]+dC;            ChannelL[lnz+i1]  = ChannelL[lnz+i1-1]+dL;            ChannelR[lnz+i1]  = ChannelR[lnz+i1-1]+dR;           }      lnz=i;     }   return(0);  }///////////////////////////////////////////////////////double MinChannel2(int xR,int xL,int per)  {   int n,p3,p2=xL-xR;   double j1,j2,j3,d;   p3=2*p2+1;   j1 = p3 + 1;   j2 = p3*(p3+1)/2;   j3 = p3*(p3+1)*(2*p3+1)/6;   if(prevxR!=xR || prevper!=per)     {      prevp=0;      sum1=0;      sum2=0;     }   for(n=prevp; n<=p2; n++)     {      sum2+=iHigh(NULL,per,n+xR)+iLow(NULL,per,n+xR);      if(iOpen(NULL,per,n+xR)>=iClose(NULL,per,n+xR))         sum1+=iHigh(NULL,per,n+xR)*2*n+iLow(NULL,per,n+xR)*(2*n+1);      else         sum1+=iLow(NULL,per,n+xR)*2*n+iHigh(NULL,per,n+xR)*(2*n+1);     }   prevxR=xR;   prevp=p2+1;   prevper=per;   d=(j2*sum2-j1*sum1)/(j2*j2-j1*j3);   yOptR = (sum1-j3*d)/j2;   yOptL = d*2*p2+yOptR;   return(SumPlus2(xL,xR,yOptR,yOptL,per)/(p2+1));  }///////////////////////////////////////////////////////double SumPlus2(int xL1,int xR1,double yR1,double yL1,int per)  {   double curLinePrice,curdelta,curdeltaH,curdeltaL,delta=0;   curdeltaMax=-100000;   curdeltaMin=100000;   int i = xR1;   if(xL1==xR1)return(0);   delta = (yL1-yR1)/(xL1-xR1);   curLinePrice=yR1;   sumPlus=0;   while(i<=xL1)     {      curdelta=iOpen(NULL,per,i)-curLinePrice;      curdeltaH = iHigh(NULL,per,i) - curLinePrice;      curdeltaL = iLow(NULL,per,i) - curLinePrice;      if(curdeltaMax<curdeltaH) curdeltaMax=curdeltaH;      if(curdeltaMin>curdeltaL) curdeltaMin=curdeltaL;      if(curdelta>0) sumPlus=sumPlus+curdelta;      curLinePrice=curLinePrice+delta;      i++;     }   return(sumPlus/Point);  }////////////////////////////////////////////////////////////////////////////////////void LoadHist()  {   int iPeriod[9];   iPeriod[0]=1;   iPeriod[1]=5;   iPeriod[2]=15;   iPeriod[3]=30;   iPeriod[4]=60;   iPeriod[5]=240;   iPeriod[6]=1440;   iPeriod[7]=10080;   iPeriod[8]=43200;   for(int iii=0;iii<9;iii++)     {      datetime open=iTime(Symbol(),iPeriod[iii],0);      int error=GetLastError();      while(error==4066)        {         Comment("Historical data was not uploaded for ",iPeriod[iii]," period, you need to reboot the indicator or go to another timeframe");         Sleep(10000);         open = iTime(Symbol(), iPeriod[iii], 0);         error=GetLastError();        }     }  }//+------------------------------------------------------------------+ 由于时间有限加上对源码的追溯做不到最终解释权,所以我们提供的源码EA仅仅只能用来做模拟测试使用,严格禁止商业使用和跑实盘!
基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-06-04 12:29:10 HTTP/1.1 GET : https://www.yeyulingfeng.com/a/709531.html
  2. 运行时间 : 3.141543s [ 吞吐率:0.32req/s ] 内存消耗:4,913.50kb 文件加载:145
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=4d33ff2b9d490117041c97155a700118
  1. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/autoload_static.php ( 6.05 KB )
  7. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/ralouphie/getallheaders/src/getallheaders.php ( 1.60 KB )
  10. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  11. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  12. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  13. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  14. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  15. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  16. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  17. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  18. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  19. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/guzzlehttp/guzzle/src/functions_include.php ( 0.16 KB )
  21. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/guzzlehttp/guzzle/src/functions.php ( 5.54 KB )
  22. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  23. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  24. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  25. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/provider.php ( 0.19 KB )
  26. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  27. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  28. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  29. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/common.php ( 0.03 KB )
  30. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  32. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/alipay.php ( 3.59 KB )
  33. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  34. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/app.php ( 0.95 KB )
  35. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/cache.php ( 0.78 KB )
  36. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/console.php ( 0.23 KB )
  37. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/cookie.php ( 0.56 KB )
  38. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/database.php ( 2.48 KB )
  39. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/filesystem.php ( 0.61 KB )
  40. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/lang.php ( 0.91 KB )
  41. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/log.php ( 1.35 KB )
  42. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/middleware.php ( 0.19 KB )
  43. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/route.php ( 1.89 KB )
  44. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/session.php ( 0.57 KB )
  45. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/trace.php ( 0.34 KB )
  46. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/view.php ( 0.82 KB )
  47. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/event.php ( 0.25 KB )
  48. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  49. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/service.php ( 0.13 KB )
  50. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/AppService.php ( 0.26 KB )
  51. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  52. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  53. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  54. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  55. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  56. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/services.php ( 0.14 KB )
  57. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  58. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  59. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  60. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  61. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  62. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  63. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  64. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  65. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  66. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  67. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  68. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  69. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  70. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  71. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  72. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  73. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  74. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  75. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  76. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  77. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  78. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  79. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  80. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  81. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  82. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  83. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  84. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  85. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  86. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  87. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/Request.php ( 0.09 KB )
  88. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  89. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/middleware.php ( 0.25 KB )
  90. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  91. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  92. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  93. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  94. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  95. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  96. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  97. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  98. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  99. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  100. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  101. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  102. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  103. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/route/app.php ( 3.94 KB )
  104. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  105. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  106. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/controller/Index.php ( 9.87 KB )
  108. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/BaseController.php ( 2.05 KB )
  109. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  110. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  111. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  112. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  113. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  114. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  115. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  116. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  117. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  118. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  119. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  120. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  121. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  122. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  123. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  124. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  125. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  126. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  127. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  128. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  129. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  130. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  131. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  132. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  133. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  134. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  135. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/controller/Es.php ( 3.30 KB )
  136. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  137. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  138. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  139. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  140. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  141. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  142. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  143. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  144. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/runtime/temp/c935550e3e8a3a4c27dd94e439343fdf.php ( 31.50 KB )
  145. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000728s ] mysql:host=127.0.0.1;port=3306;dbname=wenku;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001055s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.151804s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.221878s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001018s ]
  6. SELECT * FROM `set` [ RunTime:0.162769s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.001044s ]
  8. SELECT * FROM `article` WHERE `id` = 709531 LIMIT 1 [ RunTime:0.244353s ]
  9. UPDATE `article` SET `lasttime` = 1780547352 WHERE `id` = 709531 [ RunTime:0.196316s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 64 LIMIT 1 [ RunTime:0.081574s ]
  11. SELECT * FROM `article` WHERE `id` < 709531 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.135874s ]
  12. SELECT * FROM `article` WHERE `id` > 709531 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.268236s ]
  13. SELECT * FROM `article` WHERE `id` < 709531 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.038987s ]
  14. SELECT * FROM `article` WHERE `id` < 709531 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.559975s ]
  15. SELECT * FROM `article` WHERE `id` < 709531 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.043107s ]
3.144566s