Skip to content

Instantly share code, notes, and snippets.

@violetyk
Created October 17, 2011 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save violetyk/1292344 to your computer and use it in GitHub Desktop.
Save violetyk/1292344 to your computer and use it in GitHub Desktop.
[cakephp]1項目に複数のバリデーション
<?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