Skip to content

Instantly share code, notes, and snippets.

@Goram
Created September 13, 2013 09:01
Show Gist options
  • Save Goram/6548299 to your computer and use it in GitHub Desktop.
Save Goram/6548299 to your computer and use it in GitHub Desktop.
<?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