How to install the Intl extension for Twig

前端 未结 3 866
滥情空心
滥情空心 2020-12-02 15:56

The Intl extension is an extension for Twig that adds the localizeddate, localizednumber and localizedcurrency filters. How can I inst

3条回答
  •  自闭症患者
    2020-12-02 16:39

    In Symfony 3/4/5, with the autoconfiguration feature enabled, it's as easy as registering the extension as a service:

    // config/services.yaml
    
    services:
        …
    
        Twig\Extensions\IntlExtension: ~ 
    

提交回复
热议问题