think\Template::__construct PHP Method

__construct() public method

架构函数
public __construct ( array $config = [] )
$config array
    public function __construct(array $config = [])
    {
        $this->config['cache_path'] = TEMP_PATH;
        $this->config = array_merge($this->config, $config);
        $this->config['taglib_begin'] = $this->stripPreg($this->config['taglib_begin']);
        $this->config['taglib_end'] = $this->stripPreg($this->config['taglib_end']);
        $this->config['tpl_begin'] = $this->stripPreg($this->config['tpl_begin']);
        $this->config['tpl_end'] = $this->stripPreg($this->config['tpl_end']);
        // 初始化模板编译存储器
        $type = $this->config['compile_type'] ? $this->config['compile_type'] : 'File';
        $class = false !== strpos($type, '\\') ? $type : '\\think\\template\\driver\\' . ucwords($type);
        $this->storage = new $class();
    }