ThinkPHP5


think\view\driver\Php
library\think\view\driver\Php.php at line 20

Class Php

Php

public class Php


Constructor Summary
void

__construct(mixed config)

Method Summary
bool

exists(string template)

检测是否存在模板文件

void

fetch(string template, array data)

渲染模板文件

void

display(string content, array data)

渲染模板内容

void

config(string|array name, mixed value)

配置模板引擎

Constructor Detail

library\think\view\driver\Php.php at line 25

__construct

public void __construct(mixed config)

Method Detail

library\think\view\driver\Php.php at line 36

exists

public bool exists(string template)

检测是否存在模板文件

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

library\think\view\driver\Php.php at line 52

fetch

public void fetch(string template, array data)

渲染模板文件

Parameters:
template - 模板文件
data - 模板变量

library\think\view\driver\Php.php at line 81

display

public void display(string content, array data)

渲染模板内容

Parameters:
content - 模板内容
data - 模板变量

library\think\view\driver\Php.php at line 135

config

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

配置模板引擎

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

ThinkPHP5