Yii 怎样在特定的地方开启或关闭log

// 关闭LOG
foreach (Yii::app()->log->getRoutes() as $route) {
    $route->enabled = false;
}

 

你可能感兴趣的:(PHP,Yii)