Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 26
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3return array(
4    'required'      => "不能為空",
5    'equals'        => "必須和 '%s' 一致",
6    'different'     => "必須和 '%s' 不一致",
7    'accepted'      => "必須接受",
8    'numeric'       => "只能是數字",
9    'integer'       => "只能是整數(0-9)",
10    'length'        => "長度必須大於 %d",
11    'min'           => "必須大於 %s",
12    'max'           => "必須小於 %s",
13    'in'            => "無效的值",
14    'notIn'         => "無效的值",
15    'ip'            => "無效IP地址",
16    'email'         => "無效郵箱地址",
17    'url'           => "無效的URL",
18    'urlActive'     => "必須是可用的域名",
19    'alpha'         => "只能包括英文字母(a-z)",
20    'alphaNum'      => "只能包括英文字母(a-z)和數字(0-9)",
21    'slug'          => "只能包括英文字母(a-z)、數字(0-9)、破折號和下劃線",
22    'regex'         => "無效格式",
23    'date'          => "無效的日期",
24    'dateFormat'    => "日期的格式應該為 '%s'",
25    'dateBefore'    => "日期必須在 '%s' 之前",
26    'dateAfter'     => "日期必須在 '%s' 之後",
27    'contains'  => "必須包含 %s"
28);