解决TP中不能正常显示运行时间的方法
程序员文章站
2022-04-02 09:53:51
...
本文主要介绍了ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法,针对ThinkPHP配置文件config.php设置SHOW_RUN_TIME后不能显示运行时间情况下的解决方法,涉及针对ThinkPHP底层源文件的修改,需要的朋友可以参考下。希望对大家有所帮助。
具体如下:
在ThinkPHP的config.php中设置:
'SHOW_RUN_TIME'=>true;
可以在模板输出运行时间,但是有的时候会出现不显示运行时间的情况。
对此解决方法如下:
打开 ThinkPHP\Lib\Think\Core\View.class.php文件,
在protected function output($content,$display)方法中
将:
if(C('HTML_CACHE_ON')) HtmlCache::writeHTMLCache($content); if($display) { if(false !== strpos($content,'')) { $runtime = C('SHOW_RUN_TIME')? ''.$this->showTime().'' : ''; $content = str_replace('', $runtime, $content); } echo $content; if(C('SHOW_PAGE_TRACE')) $this->showTrace(); return null; }else { return $content; }
改为:
if(C('HTML_CACHE_ON')) HtmlCache::writeHTMLCache($content); if($display) { $runtime = C('SHOW_RUN_TIME')? ''.$this->showTime().'' : ''; if(false !== strpos($content,'')) { $content = str_replace('', $runtime, $content); } else $content .= $runtime; echo $content; if(C('SHOW_PAGE_TRACE')) $this->showTrace(); return null; }else { return $content; }
相关推荐:
以上就是解决TP中不能正常显示运行时间的方法的详细内容,更多请关注其它相关文章!
上一篇: PHP 性能分析与实验:性能的宏观分析
下一篇: 用PHP实现分段下载_PHP
推荐阅读
-
ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法 原创,thinkphprun_PHP教程
-
Mysql在debian系统中不能插入和显示中文的解决方法
-
百度浏览器无法加载插件不能正常运行的解决方法
-
百度浏览器无法加载插件不能正常运行的解决方法
-
Mysql在debian系统中不能插入和显示中文的解决方法
-
ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法 原创
-
PPT中的漂亮字体无法正常显示都变成普通字体的解决方法
-
ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法 原创
-
ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法 原创
-
开机显示英文:find --set-root…不能正常进入系统的解决方法