$t= microtime(true);
.............................
echo
microtime(true) - $t;
1查看从入口文件到页面最终响应用多长时间,使用microtime(),比如测试ci:
- $t= microtime(true);
- require_once BASEPATH.‘core/CodeIgniter‘.EXT;
- echo microtime(true)- $t;
2查看框架运行默认加载的文件数量:
- get_included_files()
3查看框架使用的内存:
- memory_get_usage()
4查看函数定义,以及常量,等
- $funs = get_defined_functions();
- //get_defined_constants()
- var_dump($funs[‘user‘]);
当然前提是你的控制器没有任何逻辑处理,目前想到的就这么多吧。