PHP function to verify whether the credit card number is correct
This article mainly introduces the PHP function to verify whether the credit card number is correct. This article directly gives the implementation code. Friends who need it can refer to it
You can use the following PHP function to verify whether a card number is a credit card:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
function validateCard ( $cardnumber )
{
$cardnumber = preg_replace ( " /D|s/ " , "" , $cardnumber ) ; # strip any non-digits
$cardlength = strlen ( $cardnumber ) ;
if ( $cardlength != 0 )
{
$parity = $cardlength % 2 ;
$sum = 0 ;
for ( $i = 0 ; $i < $cardlength ; $i )
{
$digit = $cardnumber [ $i ] ;
if ( $i % 2 == $parity ) $digit = $digit * 2 ;
if ( $digit > 9 ) $digit = $digit - 9 ;
$sum = $sum $digit ;
}
$valid = ( $sum % 10 == 0 ) ;
return $valid ;
}
return false ;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
17
18
19
20
|
function validateCard ( $cardnumber )
{
$cardnumber = preg_replace ( " /D|s/ " , "" , $cardnumber ) ; # strip any non-digits
$cardlength = strlen ( $cardnumber ) ;
if ( $cardlength != 0 )
{
$parity = $cardlength % 2 ;
$sum = 0 ;
for ( $i = 0 ; $i < $cardlength ; $i )<🎜>
<🎜>{<🎜>
<🎜>$digit = $cardnumber [ $i ] ;<🎜>
<🎜>if ( $i % 2 == $parity ) $digit = $digit * 2 ;<🎜>
<🎜>if ( $digit > 9 ) $digit = $digit - 9 ;
$sum = $sum $digit ;
}
$valid = ( $sum % 10 == 0 ) ;
return $valid ;
}
return false ;
}
|
Note< >: For more exciting tutorials, please pay attention to Bangke Home Programming
http://www.bkjia.com/PHPjc/1007657.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1007657.htmlTechArticlePHP function to verify whether the credit card number is correct. This article mainly introduces the function of PHP to verify whether the credit card number is correct. This article directly provides The implementation code is provided, friends who need it can refer to it and use it...