hyperf-chat/app/Template/BaseTemplate.php

21 lines
478 B
PHP
Raw Normal View History

2021-08-31 22:33:41 +08:00
<?php
declare(strict_types=1);
2022-01-23 15:13:58 +08:00
namespace App\Template;
2021-08-31 22:33:41 +08:00
abstract class BaseTemplate
{
/**
* 获取模板信息
*
* @param string $engine 模板引擎
* @param string $template 模板名称
* @param array $params 模板参数
* @return string
*/
protected function view(string $engine, string $template, $params = []): string
{
return di()->get($engine)->render($template, $params, config('view.config', []));
}
}