make() make(string $class, array|true $args = array(), boolean $newInstance = false) : object 调用类的实例 Parameters string $class 类名或者标识 array|true $args 变量 boolean $newInstance 是否每次创建新的实例 Returns object
engine() engine(string $type = null) : \think\View 获取模板引擎 Parameters string $type Returns \think\View
assign() assign(string|array $name, mixed $value = null) : \think\View 模板变量赋值 Parameters string|array $name mixed $value Returns \think\View
filter() filter(\think\Callable $filter = null) : \think\View 视图过滤 Parameters \think\Callable $filter Returns \think\View
fetch() fetch(string $template = '', array $vars = []) : string 解析和获取模板内容 用于输出 Parameters string $template array $vars Returns string
display() display(string $content, array $vars = []) : string 渲染内容输出 Parameters string $content array $vars Returns string
__set() __set(string $name, mixed $value) : mixed 模板变量赋值 Parameters string $name mixed $value Returns mixed
createFacade() createFacade(string $class = '', array $args = array(), boolean $newInstance = false) : object 创建Facade实例 Parameters string $class 类名或标识 array $args 变量 boolean $newInstance 是否每次创建新的实例 Returns object