11

我想知道如何从它的完整路径加载模板(如FILE常量给出)。

实际上,您必须像这样为模板设置“根”路径:

require_once '/path/to/lib/Twig/Autoloader.php';
Twig_Autoloader::register();

$loader = new Twig_Loader_Filesystem('/path/to/templates');
$twig = new Twig_Environment($loader, array(
   'cache' => '/path/to/compilation_cache',
));

接着 :

$template = $twig->loadTemplate('index.html');
echo $template->render(array('the' => 'variables', 'go' => 'here'));

我想用完整路径而不是文件名来调用 loadTemplate 方法。

我能怎么做 ?

我不想为这样的事情创建自己的加载器..

谢谢

4

5 回答 5

8

只需这样做:

$loader = new Twig_Loader_Filesystem('/');

这样 ->loadTemplate() 将加载相对于/.

或者,如果您希望能够使用相对路径和绝对路径加载模板:

$loader = new Twig_Loader_Filesystem(array('/', '/path/to/templates'));
于 2011-08-15T12:36:23.747 回答
4

这是一个加载给定绝对(或非)路径的加载器:

<?php


class TwigLoaderAdapter implements Twig_LoaderInterface
{
    protected $paths;
    protected $cache;

    public function __construct()
    {

    }

    public function getSource($name)
    {
        return file_get_contents($this->findTemplate($name));
    }

    public function getCacheKey($name)
    {
        return $this->findTemplate($name);
    }

    public function isFresh($name, $time)
    {
        return filemtime($this->findTemplate($name)) < $time;
    }

    protected function findTemplate($path)
    {
        if(is_file($path)) {
            if (isset($this->cache[$path])) {
                return $this->cache[$path];
            }
            else {
                return $this->cache[$path] = $path;
            }
        }
        else {
            throw new Twig_Error_Loader(sprintf('Unable to find template "%s".', $path));
        }
    }

}

?>
于 2011-08-15T23:32:25.137 回答
4

扩展加载器比修改库更好:

<?php

/**
 * Twig_Loader_File
 */
class Twig_Loader_File extends Twig_Loader_Filesystem
{
    protected function findTemplate($name)
    {
        if(isset($this->cache[$name])) {
            return $this->cache[$name];
        }

        if(is_file($name)) {
            $this->cache[$name] = $name;
            return $name;
        }

        return parent::findTemplate($name);
    }
} 
于 2013-11-28T12:10:17.043 回答
0

这对我有用(Twig 1.x):

final class UtilTwig
{
    /**
     * @param string $pathAbsTwig
     * @param array $vars
     * @return string
     * @throws \Twig\Error\LoaderError
     * @throws \Twig\Error\RuntimeError
     * @throws \Twig\Error\SyntaxError
     */
    public static function renderTemplate(string $pathAbsTwig, array $vars)
    {
        $loader = new Twig_Loader_Filesystem([''], '/');
        $twig = new Twig_Environment($loader);
        $template = $twig->loadTemplate($pathAbsTwig);
        $mailBodyHtml = $template->render($vars);

        return $mailBodyHtml;
    }
}

用法:

$htmlBody = UtilTwig::renderTemplate('/absolute/path/to/template.html.twig', [
    'some' => 'var', 
    'foo' => 'bar'
]);
于 2020-04-04T09:41:40.977 回答
0

在 Symfony(5.4 版)的配置中,使用您的模板将新的核心路径添加到文件夹。

twig:
    default_path: '%kernel.project_dir%/templates'
    paths:
        '%kernel.project_dir%/src/Service/SendEmail/EmailTpl': EmailTpl

现在您可以渲染模板。

在控制器中:

$this->render('@EmailTpl/bobo_reg.html.twig')

在任何其他地方:

$content = $this->container->get('twig')->render('@EmailTpl/bobo_reg.html.twig');
于 2022-02-10T10:14:24.610 回答