mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 12:42:48 +08:00
46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
namespace think\view\driver;
|
|
|
|
use think\Template;
|
|
|
|
class Think
|
|
{
|
|
private $template = null;
|
|
|
|
public function __construct($config = [])
|
|
{
|
|
$this->template = new Template($config);
|
|
}
|
|
|
|
/**
|
|
* 渲染模板文件
|
|
* @access public
|
|
* @param string $template 模板文件或者内容
|
|
* @param array $data 模板变量
|
|
* @param array $config 模板参数
|
|
* @return void
|
|
*/
|
|
public function fetch($template, $data = [], $config = [])
|
|
{
|
|
if (is_file($template)) {
|
|
$this->template->display($template, $data, $config);
|
|
} else {
|
|
$this->template->fetch($template, $data);
|
|
}
|
|
}
|
|
|
|
public function __call($method, $params)
|
|
{
|
|
return call_user_func_array([$this->template, $method], $params);
|
|
}
|
|
}
|