\think\facadeView

Facade管理类

Summary

Methods
Properties
Constants
instance()
make()
__callStatic()
engine()
assign()
filter()
fetch()
display()
__set()
__get()
__isset()
getDefaultDriver()
No public properties found
No constants found
createFacade()
getFacadeClass()
$alwaysNewInstance
N/A
No private methods found
No private properties found
N/A

Properties

$alwaysNewInstance

$alwaysNewInstance : bool

始终创建新的对象实例

Type

bool

Methods

instance()

instance(mixed  ...$args) : object

带参数实例化当前Facade类

Parameters

mixed $args variadic

Returns

object —

make()

make(string  $class, array|true  $args = [], bool  $newInstance = false) : object

调用类的实例

Parameters

string $class

类名或者标识

array|true $args

变量

bool $newInstance

是否每次创建新的实例

Returns

object —

__callStatic()

__callStatic(mixed  $method, mixed  $params) : mixed

Parameters

mixed $method
mixed $params

Returns

mixed —

engine()

engine(string  $type = null) : \think\View

获取模板引擎

Parameters

string $type = null

Returns

\think\View —

assign()

assign(string|array  $name, mixed  $value = null) : \think\View

模板变量赋值

Parameters

string|array $name
mixed $value = null

Returns

\think\View —

filter()

filter(\think\Callable  $filter = null) : \think\View

视图过滤

Parameters

\think\Callable $filter = null

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 —

__get()

__get(string  $name) : mixed

取得模板显示变量的值

Parameters

string $name

Returns

mixed —

__isset()

__isset(string  $name) : bool

检测模板变量是否设置

Parameters

string $name

Returns

bool —

getDefaultDriver()

getDefaultDriver() : string|null

默认驱动

Returns

string|null —

createFacade()

createFacade(string  $class = '', array  $args = [], bool  $newInstance = false) : object

创建Facade实例

Parameters

string $class

类名或标识

array $args

变量

bool $newInstance

是否每次创建新的实例

Returns

object —

getFacadeClass()

getFacadeClass() : string

获取当前Facade对应类名(或者已经绑定的容器对象标识)

Returns

string —