Skip to content

Instantly share code, notes, and snippets.

@ichikaway
Created July 21, 2009 09:11
Show Gist options
  • Save ichikaway/151219 to your computer and use it in GitHub Desktop.
Save ichikaway/151219 to your computer and use it in GitHub Desktop.
<?php
class AddValidationRuleBehavior extends ModelBehavior {
function maxLengthJP( &$model, $wordvalue, $length ) {
$word = array_shift($wordvalue);
return( mb_strlen( $word ) <= $length );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment