我需要验证我的表单中的字段,此字段属于我所在国家的个人标识号,此数字有10位数
示例:card = 1710034065
2 1 2 1 2 1 2 1 2(系数) 1 7 1 0 0 3 4 0 6(个人识别号码) 2 7 2 0 0 3 8 0 12 = 25(将个人号码的每个数字乘以 3系数,如果结果> 10在数字之间添加。)
添加乘法
总和的结果
25/10 = 2,残留5,除以10 - 残留5 = 5(校验位)**等于最后一个身份编号**
现在我需要在框架中实现这个逻辑,我不知道如何, 我在java中有一个示例代码,可以更好地了解我需要做什么。
function check_cedula( form )
{
var cedula = form.cedula.value;
array = cedula.split( "" );
num = array.length;
if ( num == 10 )
{
total = 0;
digito = (array[9]*1);
for( i=0; i < (num-1); i++ )
{
mult = 0;
if ( ( i%2 ) != 0 ) {
total = total + ( array[i] * 1 );
}
else
{
mult = array[i] * 2;
if ( mult > 9 )
total = total + ( mult - 9 );
else
total = total + mult;
}
}
decena = total / 10;
decena = Math.floor( decena );
decena = ( decena + 1 ) * 10;
final = ( decena - total );
if ( ( final == 10 && digito == 0 ) || ( final == digito ) ) {
alert( "La c\xe9dula ES v\xe1lida!!!" );
return true;
}
else
{
alert( "La c\xe9dula NO es v\xe1lida!!!" );
return false;
}
}
else
{
alert("La c\xe9dula no puede tener menos de 10 d\xedgitos");
return false;
}
}
答案 0 :(得分:0)
假设您的模型名称为User
,数据库中的字段为card
,您可以执行以下操作;
<?php
class User extends AppModel {
/**
* Validation rules
*/
public $validate = array(
'card' => array(
'validateCard' => array(
'rule' => array('validateCard'),
'message' => 'Card does not validate'
)
)
);
/**
* Custom validation rule
* @return bool
*/
public function validateCard($field) {
$cardNumber = $field['card'];
// Here, perform your logic and return a boolean
}
}
另外,请确保在您的视图中,您使用FormHelper输出表单输入,并且所有内容都应该很好。例如;
<?php
echo $this->Form->create();
echo $this->Form->input('User.card');
echo $this->Form->end();