yii框架中debug怎么用
时间:2020-02-19 14:36
这里采用的是yii2的advanced的版本。配置接口访问的debug模式。 配置文件目录: frontend/config/main-local.php (推荐教程:yii框架) 配置内容: allowedIPs 字段表示允许访问的ip字段。然后historySize 表示存储的debug文件大小。 输入地址 点击tag能够进入这个请求里面,然后查看sql,cpu占有率,执行时间等。 更多编程相关内容,请关注gxlsystem.com编程入门栏目! 以上就是yii框架中debug怎么用的详细内容,更多请关注gxlsystem.com其它相关文章!if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug']['class'] = 'yii\debug\Module';
$config['modules']['debug']['allowedIPs'] = ['*', '127.0.0.1', '0.0.0.0'];
$config['modules']['debug']['historySize'] = 200;
}
frontend/web/index.php?r=debug
来进入debug模式。