PHP function to verify whether the credit card number is correct, PHP to verify the credit card number_PHP tutorial

WBOY
Release: 2016-07-13 09:52:25
Original
954 people have browsed it

PHP function to verify whether a credit card number is correct, php to verify a credit card number

You can use the following PHP function to verify whether a card number is a credit card:

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 ;
}
Copy after login

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1008016.htmlTechArticlePHP function to verify whether a credit card number is correct. To verify a credit card number, you can use the following PHP function to verify whether a card number is a credit card. : function validateCard ( $cardnumber ) {...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template