验证zend框架中的日期2

时间:2013-02-19 19:03:15

标签: validation zend-framework2

HIHO, 我想从zf2验证日期字段 形成。我设置'format'选项以获取我需要的格式。 但每次我验证它我都会收到错误。 验证器如下所示:

            $inputFilter->add($factory->createInput(array(
            'name' => 'user_data_birth',
            'required' => false,
            'validators' => array(
                array(
                'name' => 'Date',
                'options' => array(
                    'format' => 'd.m.Y',
                    'locale' => 'de',
                    'messages' => array(
                        \Zend\Validator\Date::INVALID => 'Das scheint kein gültiges Datum zu sein.',
                        \Zend\Validator\Date::INVALID_DATE => 'Das scheint kein gültiges Datum zu sein. (Invalid Date)',
                        \Zend\Validator\Date::FALSEFORMAT => 'Das Datum ist nicht im richtigen Format.',
                        ),
                    ),
                ),
                array(
                    'name' => 'NotEmpty',
                    'options' => array(
                    'messages' => array(
                        \Zend\Validator\NotEmpty::IS_EMPTY => 'Bitte geben Sie das Datum an'
                        ),
                    ),
                )
            ),
        )));

但我每次都会收到日期格式错误的错误。

4 个答案:

答案 0 :(得分:14)

你可以解决问题,开始日期应该小于结束日期验证,使用如下的回调函数:

          $inputFilter->add($factory->createInput(array(
                'name' => 'end_date',
                'required' => true,                 
                'filters' => array(
                        array('name' => 'StripTags'),
                        array('name' => 'StringTrim'),
                ),
                'validators' => array(
                    array(
                        'name' => 'Callback',
                        'options' => array(
                            'messages' => array(
                                    \Zend\Validator\Callback::INVALID_VALUE => 'The end date should be greater than start date',
                            ),
                            'callback' => function($value, $context = array()) {                                    
                                $startDate = \DateTime::createFromFormat('d-m-Y', $context['start_date']);
                                $endDate = \DateTime::createFromFormat('d-m-Y', $value);
                                return $endDate >= $startDate;
                            },
                        ),
                    ),                          
                ),
        )));

使用上面的代码,我解决了我的问题。我希望这会有所帮助。

答案 1 :(得分:1)

需要更改日期元素中的验证器。如果您将格式传递给元素,您将没事。你也可以从元素中获取验证器。

$date = new Element\DateTime('test');
$date->setFormat('d.m.Y');

$validators = $date->getValidators()
// apply you changes

答案 2 :(得分:0)

您是否尝试过基本的其他格式:'Y-m-d'? 结果是什么?

答案 3 :(得分:0)

如果我们只需要在一个表单中使用它,那么CallBack函数是一种非常方便的方法。大多数情况下,我们需要在多个地方使用它。我做了一些研究并编写了这个自定义验证器。该验证器比较两个字符串;我添加了另一个技巧,看看我们是否需要这些字符串不同或相同。

如果我们要更改密码;然后旧密码和新密码不同,同时我们需要新密码验证与新密码相同。只需将不同的参数更改为" true"就可以将此验证器用于这两种情况。或" false"。

Form Fields
user_password
new_user_password
new_user_password_verify

在Application \ src \ Application \ Validator

中创建一个新的验证器StringCompare.php
<?php

namespace Application\Validator;

class StringCompare extends \Zend\Validator\AbstractValidator {

    const SAME = 'same';
    const DIFFERENT = 'different';

    protected $messageTemplates = array(
        self::SAME => "Both the words are the same",
        self::DIFFERENT => "Both the words are different",
    );

    protected $messageVariables = array(
        'compareWith' => array( 'options' => 'compareWith' ),
        'different' => array( 'options' => 'different' ),
    );

    protected $options = array(
        'compareWith' => "",
        'different' => true,
        'encoding' => 'UTF-8',
    );

    public function __construct( $options = array( ) ) {
        parent::__construct( $options );
    }

    public function getCompareWith( ) {
        return $this->options[ 'compareWith' ];
    }

    public function getDifferent( ) {
        return $this->options[ 'different' ];
    }

    public function isValid( $value, $context=array( ) ) {

        $compareWith = $this->getCompareWith( );
        $different = $this->getDifferent( );

        $returnValue =  $value == $context[$compareWith];
        if ( $different ) {
            $returnValue = !$returnValue;
       if ( !$returnValue ) {
          $this->error( self::SAME );
           }
        } else {
        if ( !$returnValue ) {
        $this->error( self::DIFFERENT );
        }
    }
        return $returnValue;


    }

}

将以下内容添加到表单过滤器

$this->add ( array (
    'name'  => 'new_user_password',
    'required' => true,
    'filters' => array (
        array ( 
            'name' => 'StringTrim',
        ),
    ),
    'validators' => array (
        array (
            'name' => 'StringLength',
            'options' => array (
                'min' => 8,
                'max' => 20,
            )
        ),
        array (
            'name' => 'Application\Validator\StringCompare',
            'options' => array (
                'compareWith' => 'user_password',
                'different' => true,
            ),
        ),
    )
) );

在您的控制器中执行表单验证,我们完成了。 如果我们使用不同的=&#39; true&#39;验证例程确保两个值不同,如果我们使用&#39; false&#39;则确保字符串相同。