找出已安装的树枝版本
有没有办法找出我安装的Twig版本?
类似的东西
<p>The current version is {% twig.version %}</p>
(虽然我知道这甚至不接近正确)。
有没有办法找出我安装的Twig版本?
类似的东西
<p>The current version is {% twig.version %}</p>
(虽然我知道这甚至不接近正确)。
试试看:
<p>The current version is {{ constant('Twig_Environment::VERSION') }}</p>
你会发现它在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';