ThinkPHP5


think\view\driver\Think
library\think\view\driver\Think.php at line 21

Class Think

Think

public class Think


Constructor Summary
void

__construct(mixed config)

Method Summary
bool

exists(string template)

检测是否存在模板文件

void

fetch(string template, array data, array config)

渲染模板文件

void

display(string template, array data, array config)

渲染模板内容

mixed

config(string|array name, mixed value)

配置或者获取模板引擎参数

Constructor Detail

library\think\view\driver\Think.php at line 28

__construct

public void __construct(mixed config)

Method Detail

library\think\view\driver\Think.php at line 44

exists

public bool exists(string template)

检测是否存在模板文件

Parameters:
template - 模板文件或者模板规则

library\think\view\driver\Think.php at line 61

fetch

public void fetch(string template, array data, array config)

渲染模板文件

Parameters:
template - 模板文件
data - 模板变量
config - 模板参数

library\think\view\driver\Think.php at line 84

display

public void display(string template, array data, array config)

渲染模板内容

Parameters:
template - 模板内容
data - 模板变量
config - 模板参数

library\think\view\driver\Think.php at line 130

config

public mixed config(string|array name, mixed value)

配置或者获取模板引擎参数

Parameters:
name - 参数名
value - 参数值

ThinkPHP5