ZF2表格:具有本地化的NumberFormat过滤器

时间:2015-03-04 11:14:10

标签: forms filter localization zend-framework2 number-formatting

HY,

如何为知道当前区域设置的fieldset中的输入定义NumberFormat-filter?我想要的是像 1000.33 这样的数字在这个视图中显示如下: 1.000,33 (或指定的任何区域设置)我已经尝试使用InputFilterProviderInterface,但它在视图中没有任何影响:

<?php
namespace Customer\Form;

use Customer\Entity\OfferDay;
use DoctrineModule\Stdlib\Hydrator\DoctrineObject as DoctrineHydrator;

use Zend\Form\Fieldset;
use Zend\InputFilter\InputFilterProviderInterface;

class OfferDayFieldset extends Fieldset implements InputFilterProviderInterface
{
    public function __construct($em)
    {
        parent::__construct('offerDayFieldset');

        $this->setHydrator(new DoctrineHydrator($em))
             ->setObject(new OfferDay());

        $this->add(array(
            'name' => 'price',
            'type' => 'Text',
            'options' => array(
                'label' => '',
            ),
        ));
    }

    public function getInputFilterSpecification()
    {
        return array(
            'price' => array(
                'required' => false,
                'filters' => array(
                    array(
                        'name' => 'NumberFormat',
                        'options' => array(
                            'locale' => 'de_DE',
                        ),
                    ),
                ),
            ),
        );
    }
}

在视图中,我通过formRow() - 函数输出输入。

我也知道你可以像这样编程使用NumberFormat-Filter(l18n Filters - Zend Framework 2):

$filter = new \Zend\I18n\Filter\NumberFormat("de_DE");
echo $filter->filter(1234567.8912346);
// Returns "1.234.567,891"

但我想使用数组符号。

有人做过类似的事情吗?

1 个答案:

答案 0 :(得分:0)

好吧这似乎不像我想的那么简单:)但我得到了一个解决方案。

首先像这样定义过滤器:

public function getInputFilterSpecification()
{
    return array(
        'price' => array(
            'required' => false,
            'filters' => array(
                array(
                    'name' => 'NumberFormat',
                    'options' => array(
                        'locale' => 'de_DE',
                        'style' => NumberFormatter::DECIMAL,
                        'type' => NumberFormatter::TYPE_DOUBLE,
                    ),
                ),
            ),
        ),
    );
}

locale 是当前使用的区域设置。这会将数字格式化为当前格式,然后再将其保存到数据库中。

在视图中,您可以使用过滤器视图助手将数字转换为正确的格式:

<?php
    $this->plugin("numberformat")
         ->setFormatStyle(NumberFormatter::DECIMAL)
         ->setFormatType(NumberFormatter::TYPE_DOUBLE)
         ->setLocale("de_DE");
?>

<p>
    <?php 
        $currentElement = $form->get('price');
        $currentElement->setValue($this->numberFormat($currentElement->getValue())); 
        echo $this->formRow($currentElement);
    ?>
</p>

<强>结果: 数据库:12.345 - &gt; 查看:12,345 - &gt;数据库:12.345