编程语言
首页 > 编程语言> > thinkphp6 twig3.x使用 说明

thinkphp6 twig3.x使用 说明

作者:互联网

以下内容为浏览器自动翻译 本地试用没问题

前提条件

Twig 3.x至少需要PHP 7.2.5才能运行。

安装

推荐的安装Twig的方法是通过Composer:

composer require “twig/twig:^3.0”

基本API用法

本部分为您简要介绍了Twig的PHP API。


require_once '/path/to/vendor/autoload.php';

$loader = new \Twig\Loader\ArrayLoader([
    'index' => 'Hello layui-layer-iframe1!',
]);
$twig = new \Twig\Environment($loader);

echo $twig->render('index', ['name' => 'Fabien']);

Twig使用加载程序(\Twig\Loader\ArrayLoader)定位模板,并使用环境(\Twig\Environment)存储其配置。
该render()方法加载作为第一个参数传递的模板,并使用作为第二个参数传递的变量进行渲染。
由于模板通常存储在文件系统上,因此Twig还附带了文件系统加载器:


$loader = new \Twig\Loader\FilesystemLoader('/path/to/templates');
$twig = new \Twig\Environment($loader, [
    'cache' => '/path/to/compilation_cache',
]);

echo $twig->render('index.html', ['name' => 'Fabien']);

官网说明 https://twig.symfony.com/doc/3.x/intro.html#installation
文章来源:https://blog.cssscz.com/2438.html

标签:index,Twig,twig3,loader,说明,thinkphp6,Loader,new,twig
来源: https://blog.csdn.net/fucaiwei/article/details/109300663