PHP:ThinkPHP使用Twig渲染html
【摘要】
此文是单独使用Twig渲染html的方法,用于邮件模板渲染。
如果需要整合到ThinkPHP渲染视图层的模板引擎,可参看 ThinkPHP6.0使用twig作为模板引擎及自定义过滤器
文档:
htt...
此文是单独使用Twig渲染html的方法,用于邮件模板渲染。
如果需要整合到ThinkPHP渲染视图层的模板引擎,可参看
ThinkPHP6.0使用twig作为模板引擎及自定义过滤器
文档:
安装
composer require "twig/twig:^3.0"
- 1
代码示例
<?php
namespace app\service;
use Twig\Environment;
use Twig\Loader\FilesystemLoader;
class TemplateService
{
// 配置模板文件目录: app/template
private static $template_dir = 'template';
public static function render($name, array $context = [])
{
// 获取应用基础目录
$absolute_template_dir = app()->getBasePath() . self::$template_dir;
$loader = new FilesystemLoader($absolute_template_dir);
$twig = new Environment($loader);
return $twig->render($name, $context);
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
测试
<?php
require_once __DIR__ . '/../../vendor/autoload.php';
((new \think\App())->http)->run();
use app\service\TemplateService;
use PHPUnit\Framework\TestCase;
class TemplateServiceTest extends TestCase
{
/**
* @doesNotPerformAssertions
*/
public function testRender()
{
echo TemplateService::render('index.html', ['name'=> 'Tom']);
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
模板文件:app/template/index.html
<!DOCTYPE html>
<html lang="en">
<body>
{{name}}
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
输出结果
<!DOCTYPE html>
<html lang="en">
<body>
Tom
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/121636346
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)