Created
September 13, 2013 09:01
-
-
Save Goram/6548299 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$factory = new Factory(); | |
$inputFilter = $factory->createInputFilter(array( | |
'user' => array( | |
'type' => 'InputFilter', | |
array( | |
'name' => 'username', | |
'validators' => array( | |
array( | |
'name' => 'StringLength', | |
'options' => array( | |
'min' => 5, | |
'max' => 255, | |
'message' => 'Mindestens 5 und maximal 255 Zeichen lang' | |
) | |
) | |
) | |
), | |
), | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment