문제

In setting up validation for one of my models, I'm having trouble getting the correct syntax for the 'range' rule. Every variation seems to pass only the (first) min parameter and not the (second) max.

/**
 * @var   array  Validation rules
 */
public function rules()
{
    return array(
        'title' => array(
            array('not_empty'),
            array('max_length', array(':value', 50)),
        ),
        'time' => array(
            array('not_empty'),
            array('date'),
        ),
        'date' => array(
            array('not_empty'),
            array('date'),
        ),
        'limit' => array(
            array('digit'),
            array('range', array(':value', 1), array(':value', 255)),
        ),
    );
}

I also tried array('range', array(':value', array(1, 255))) to no avail.

Any suggestions?

도움이 되었습니까?

해결책

The correct syntax for Range Rule need 3 param and not 2. As you can see in the documentation: http://kohanaframework.org/3.2/guide/api/Valid#range

So the code must be like this:

array('range', array(':value', 1, 255)),

다른 팁

And be carefull, the range is ]min;max[ not [min;max], so the limits are excluded.

array('range', array(':value', 1, 255)) => [2;254]

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top