示例#1
0
文件: log.php 项目: houseme/think
 public static function init($config = [])
 {
     $type = isset($config['type']) ? $config['type'] : 'File';
     $class = '\\think\\log\\driver\\' . strtolower($type);
     unset($config['type']);
     self::$storage = new $class($config);
 }