bind() bind(string|array $name, string $class = null) : object 绑定类的静态代理 Parameters string|array $name 类标识 string $class 类名 Returns object
make() make(string $class, array|true $args = array(), boolean $newInstance = false) : mixed 调用类的实例 Parameters string $class 类名或者标识 array|true $args 变量 boolean $newInstance 是否每次创建新的实例 Returns mixed
init() init(mixed $engine = [], array $replace = []) : \think\View static 初始化 Parameters mixed $engine array $replace Returns \think\View
share() share(mixed $name, mixed $value = '') : \think\View static 模板变量静态赋值 Parameters mixed $name mixed $value Returns \think\View
assign() assign(mixed $name, mixed $value = '') : \think\View static 模板变量赋值 Parameters mixed $name mixed $value Returns \think\View
config() config(mixed $name, mixed $value = '') : \think\View static 配置模板引擎 Parameters mixed $name mixed $value Returns \think\View
exists() exists(mixed $name) : \think\View static 检查模板是否存在 Parameters mixed $name Returns \think\View
filter() filter(Callable $filter) : \think\View static 视图内容过滤 Parameters Callable $filter Returns \think\View
engine() engine(mixed $engine = []) : \think\View static 设置当前模板解析的引擎 Parameters mixed $engine Returns \think\View
fetch() fetch(string $template = '', array $vars = [], array $config = [], boolean $renderContent = false) : string static 解析和获取模板内容 Parameters string $template array $vars array $config boolean $renderContent Returns string
display() display(string $content = '', array $vars = [], array $config = []) : string static 渲染内容输出 Parameters string $content array $vars array $config Returns string
createFacade() createFacade(string $class = '', array $args = array(), boolean $newInstance = false) : object 创建Facade实例 Parameters string $class 类名或标识 array $args 变量 boolean $newInstance 是否每次创建新的实例 Returns object