You are currently browsing Crystal’s documentation for the 0.4 version - Switch to version: 0.3

Multiple rules per field

If you would like to assign multiple validation rules to a single field, this is basically how it should look:

$multiple_rules = array
(
'password' => array('alpha_numeric | between: (5 10), message: Passwords must be between 5 and 10 characters long | required');