PHP验证信用卡卡号是否正确函数


可以使用以下PHP函数,验证一个卡号是否是信用卡:

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 ;
}

PHP编译安装时常见错误解决办法
Thisarticleispostonhttps://coderwall.com/p/ggmpfaconfigure:error:xslt-confignotfound.Pleasereinstallthelibxslt=1.1.0distributionyum-yinstalllibxslt-develconfigure:error:Couldnotfindnet-snmp-configbina

php实现的mongodb操作类
mongo_db.phpphp/***CreatedbyPhpStorm.*User:yangyulong*Date:2015/5/26*Time:13:45*/classMongo_db{privatestatic$instanceof=NULL;public$mongo;private$host='localhost';private$port='27017';private$db;publi

typecho插件编写教程(一):Hello World
最近老高正在编写一个关于typecho的插件,由于typecho不像wordpress,有那么多的文档参考,写一个插件还是遇到了很多的坑,不过随着研究的不断深入,老