Kohana验证完整规则列表

时间:2011-11-25 21:19:20

标签: kohana kohana-3.0

我找不到kohana验证规则列表的完整列表,有人可以指向我正确的文档页面吗?顺便说一句,如果有人不明白我在说什么:

        return Validation::factory($arr)
            ->rule('tenant_last_name', 'not_empty')->rule('tenant_first_name', 'not_empty') // Name
            ->rule('tenant_ssn', 'not_empty')->rule('tenant_ssn', 'numeric') //SNN
            ->rule('tenant_email', 'email')->rule('tenant_email', 'not_empty') //Email
            ->rule('tenant_phone', 'numeric')->rule('tenant_phone', 'not_empty') //phone

2 个答案:

答案 0 :(得分:1)

正如matino所说,您可以直接查看API或指南中的更易于阅读的版本http://kohanaframework.org/3.2/guide/kohana/security/validation#provided-rules

答案 1 :(得分:0)