示例#1
0
 public function dispatchLoopShutdown()
 {
     if (Globals::isDebug()) {
         $print = "";
         self::$_time_end_render = gettimeofday(true);
         $print = $this->dumpPageRenderProfiler(self::$_time_start_render, self::$_time_end_render);
         $print .= $this->dumpCacheProfiler();
         $print .= '<br><br>' . ProfilerLog::dumpLog();
         $print .= $this->dumpDbProfiler();
         $this->getResponse()->appendBody($print);
     }
 }