Guest User

Diemuzi

a guest
Aug 8th, 2012
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1. $this->add(
  2.     array(
  3.         'name'       => 'employeeid',
  4.         'required'   => true,
  5.         'filters'    => array(
  6.             array('name' => 'Zend\Filter\StringTrim')
  7.         ),
  8.         'validators' => array(
  9.             array(
  10.                 'name'    => 'Zend\Validator\StringLength',
  11.                 'options' => array(
  12.                     'encoding' => 'UTF-8',
  13.                     'min'      => 2,
  14.                     'max'      => 20
  15.                 ), true
  16.             ),
  17.             array('name' => 'Zend\Validator\Digits', true)
  18.         )
  19.     )
  20. );
Advertisement
Add Comment
Please, Sign In to add comment