2011-11-25 90 views
0

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

回答