通过核心扩展更改 number_format 过滤器的默认值
Posted
技术标签:
【中文标题】通过核心扩展更改 number_format 过滤器的默认值【英文标题】:Changing the default of number_format filter through the core extension 【发布时间】:2021-10-14 00:24:02 【问题描述】:我想更改 Twig 上 number_format
的默认设置。在他们的文档中,他们展示了如何做到这一点
$twig = new \Twig\Environment($loader);
$twig->getExtension(\Twig\Extension\CoreExtension::class)->setNumberFormat(3, '.', ',');
我的问题是在使用 Symfony 时我可以在哪里插入此代码?
【问题讨论】:
【参考方案1】:您可以在 twig.yaml 配置中更改此设置。
# app/config/packages/twig.yaml
twig:
number_format:
decimals: 2
decimal_point: ','
thousands_separator: '.'
或者如果您可以使用事件订阅者手动将其更改为内核请求事件。
<?php
namespace App\EventListener;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\Event\RequestEvent;
use Symfony\Component\HttpKernel\KernelEvents;
use Twig\Environment;
use Twig\Extension\CoreExtension;
class TwigSettingListener implements EventSubscriberInterface
private $twig;
public function __construct(Environment $twig)
$this->twig = $twig;
public static function getSubscribedEvents()
return [
KernelEvents::REQUEST => 'onKernelRequest',
];
public function onKernelRequest(RequestEvent $event): void
$this->twig->getExtension(CoreExtension::class)
->setNumberFormat(3, '.', ',');
【讨论】:
以上是关于通过核心扩展更改 number_format 过滤器的默认值的主要内容,如果未能解决你的问题,请参考以下文章
在 PHP 中处理货币 - 小数位和 number_format()