Created
October 17, 2011 10:22
-
-
Save violetyk/1292344 to your computer and use it in GitHub Desktop.
[cakephp]1項目に複数のバリデーション
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
'password_tmp' => array( | |
'alphanumeric' => array( | |
'rule' => 'alphaNumeric', | |
'message' => '半角英数字で入力して下さい。', | |
), | |
'minlength' => array( | |
'rule' => array('minLength', 8), | |
'message' => '8文字以上で入力して下さい。', | |
) | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment