12
有沒有找到我的樹枝版本的方法?找出已安裝的樹枝版本
喜歡的東西
<p>The current version is {% twig.version %}</p>
(雖然我知道這是不是甚至接近是正確的)。
有沒有找到我的樹枝版本的方法?找出已安裝的樹枝版本
喜歡的東西
<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 <[email protected]>
*/
class Twig_Environment
{
const VERSION = '1.24.0';
真棒。謝謝。 – Tom