php – Twig调试(我没有config.yml)

很久以后我又回到了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).

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...