使用CodeIgniter设置Twig时出错

时间:2018-05-14 10:34:50

标签: twig codeigniter-3

我正在尝试使用我的新Codeigniter项目设置Twig模板引擎。

但是我在设置

后收到此错误
/application/vendor/twig/twig/lib/Twig/Loader/Filesystem.php:

我不知道这个错误意味着什么。以及如何解决它。

根据我的检查,这来自以下文件 -

    class Twig_Loader_Filesystem implements Twig_LoaderInterface, Twig_ExistsLoaderInterface, Twig_SourceContextLoaderInterface
    {
        /** Identifier of the main namespace. */
        const MAIN_NAMESPACE = '__main__';

        protected $paths = array();
        protected $cache = array();
        protected $errorCache = array();

        private $rootPath;

        ...

代码:

{{1}}

我按照这篇文章进行了设置

https://github.com/bcit-ci/CodeIgniter/wiki/Twig-PHP-Template-Engine-Implementation

Codeigniter Version- 3.1.8

1 个答案:

答案 0 :(得分:0)

最后我做到了。

我在autoload.php文件中遗漏了这个条目

$autoload['config'] = array('twig');