找出已安装的树枝版本

2022-08-30 13:04:59

有没有办法找出我安装的Twig版本?

类似的东西

<p>The current version is {% twig.version %}</p> 

(虽然我知道这甚至不接近正确)。


答案 1

试试看:

<p>The current version is {{ constant('Twig_Environment::VERSION') }}</p> 

答案 2

你会发现它在vendor/twig/twig/lib/Twig/Environment.php

/**
 * Stores the Twig configuration.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 */
class Twig_Environment
{
    const VERSION = '1.24.0';

对于更高版本的Twig,例如2.7及更高版本,您可以在/vendor/twig/twig/src/Environment.php

/**
 * Stores the Twig configuration.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 */
class Environment
{
    const VERSION = '2.9.0';

推荐