2014-02-05 102 views
12

有沒有找到我的樹枝版本的方法?找出已安裝的樹枝版本

喜歡的東西

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

(雖然我知道這是不是甚至接近是正確的)。

回答

21

試試:

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

真棒。謝謝。 – Tom

6

你會發現它在vendor/twig/twig/lib/Twig/Environment.php

/** 
* Stores the Twig configuration. 
* 
* @author Fabien Potencier <[email protected]> 
*/ 
class Twig_Environment 
{ 
    const VERSION = '1.24.0'; 
相關問題