symfony/templating
最新稳定版本:v6.4.24
Composer 安装命令:
composer require symfony/templating
包简介
Provides all the tools needed to build any kind of template system
README 文档
README
The Templating component provides all the tools needed to build any kind of template system.
It provides an infrastructure to load template files and optionally monitor them for changes. It also provides a concrete template engine implementation using PHP with additional tools for escaping and separating templates into blocks and layouts.
Getting Started
$ composer require symfony/templating
use Symfony\Component\Templating\Loader\FilesystemLoader; use Symfony\Component\Templating\PhpEngine; use Symfony\Component\Templating\Helper\SlotsHelper; use Symfony\Component\Templating\TemplateNameParser; $filesystemLoader = new FilesystemLoader(__DIR__.'/views/%name%'); $templating = new PhpEngine(new TemplateNameParser(), $filesystemLoader); $templating->set(new SlotsHelper()); echo $templating->render('hello.php', ['firstname' => 'Fabien']); // hello.php Hello, <?= $view->escape($firstname) ?>!
Resources
统计信息
- 总下载量: 66.99M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1028
- 点击次数: 1
- 依赖项目数: 641
- 推荐数: 59
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04