打开ss 跟目录下的function/common.func.php找到如下代码。注释- // if($_SCONFIG['debug'] && !defined('CREATEHTML')) {
- // $mtime = explode(' ', microtime());
- // $totaltime = number_format(($mtime[1] + $mtime[0] - $_SGLOBAL['supe_starttime']), 6);
- // $info .= 'Processed in '.$totaltime.' second(s), '.$_SGLOBAL['db']->querynum.' queries'.
- // ($_SCONFIG['gzipcompress'] ? ', Gzip enabled' : NULL);
- // $info .= '<br />';
- // }
复制代码 或复制,下面代码,覆盖。就OK了。
测试地址:www.aibohe.com- //调试信息,显示进程处理时间
- function debuginfo($echo=1) {
- global $_SGLOBAL, $_SCONFIG;
- $info = '';
- // if($_SCONFIG['debug'] && !defined('CREATEHTML')) {
- // $mtime = explode(' ', microtime());
- // $totaltime = number_format(($mtime[1] + $mtime[0] - $_SGLOBAL['supe_starttime']), 6);
- // $info .= 'Processed in '.$totaltime.' second(s), '.$_SGLOBAL['db']->querynum.' queries'.
- // ($_SCONFIG['gzipcompress'] ? ', Gzip enabled' : NULL);
- // $info .= '<br />';
- // }
- if(!empty($_SCONFIG['miibeian'])) {
- $info .= '<a href="http://www.miibeian.gov.cn" target="_blank">'.$_SCONFIG['miibeian'].'</a><br />';
- }
- if($echo) {
- echo $info;
- } else {
- return $info;
- }
- }
复制代码 |