Zend RegEx Validator için özel anlamlı bir hata iletisi

2 Cevap php

Ben aşağıdaki gibi benim formunda bir metin alanı doğrulama ediyorum:

 $name = new Zend_Form_Element_Text('name');

 $name->setLabel('First Name:')
      ->setRequired(true)
      ->addFilter(new Zend_Filter_StringTrim())
      ->addValidator('regex',true,array('/^[(a-zA-Z0-9)]+$/'))
      ->addErrorMessage('Please enter a valid first name');

What I'm trying to accomplish is - how can i display a meaningful error message? Eg: If first name is 'XYZ-', how can i display '- is not allowed in first name.'

Is there a way I can access what character the regex is failing for? Would you recommend something else altogether?

I thought about writing a custom validator but the regex is pretty simple, so I don't see the point. I couldn't find a decent documentation for the zend 'regex' validator anywhere.

If I don't override the default error message, I simple get something like : ';;;hhbhbhb' does not match against pattern '/^[(a-zA-Z0-9)]+$/' - which I obviously don't want to display to the user.

Ben girişleri takdir ediyorum.

2 Cevap

Nasıl kısıtlamalar ne olduğunu, meslekten olmayan şartlarını kullanıcı anlatmaya ne dersin? Gibi

Error: Only the letters A to Z and numbers are allowed.

(Hangi ... ilk isimler numaralarını içerebilir neden sorusuna beni götürür)

Başlatmasını ise zend standart doğrulayıcılarıyla daki özel bir hata mesaj (lar) sadece onaylayıcısına messages dizisi geçirmek için. Hata mesajları - Bu anahtarlar hata türleri (ayrıca bakınız), ve değerleri bir dizi var.

->addValidator('regex', true, 
                       array(
                           'pattern'=>'/^[(a-zA-Z0-9)]+$/', 
                           'messages'=>array(
                               'regexNotMatch'=>'Your own custom error message'
                           )
                       )
)

To see error keys for other error types of chosen validator you may refer to it's source code. For regex validator it's located at {Zend Framework Library}/Zend/Validate/Regex.php .

Good luck :) doğrulanmasında.