很久以后我又回到了PHP游戏中.
我正在看Twig,需要了解更多正在发生的事情.我发现了一些需要进入config.yml文件的文本.警告:它不在我的系统上.它是否来自Twig版本或我是否也必须安装Symfony?有点迷失在这里.
干杯.
编辑:我只需要{{dump(var)}}来工作. httpd错误日志告诉我:
PHP致命错误:未捕获异常’Twig_Error_Syntax’,消息’the function“dump”不存在于
我正在设置我的Twig环境:
$twig = new Twig_Environment( $loader, array(
'cache' => '/tmp',
'debug' => true
));
解决方法:
您需要确保使用1.5或更高版本的twig.看起来你只缺少1件将调试扩展添加到你的树枝环境中.
$twig->addExtension(new Twig_Extension_Debug());
以下是转储功能的文档:
http://twig.sensiolabs.org/doc/functions/dump.html
The dump function is not available by default. You must add the Twig_Extension_Debug extension explicitly when creating your Twig environment:
$twig = new Twig_Environment($loader, array(
'debug' => true,
// ...
));
$twig->addExtension(new Twig_Extension_Debug());
Even when enabled, the dump function won’t display anything if the debug option on the environment is not enabled (to avoid leaking debug information on a production server).
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。