Home  >  Article  >  php教程  >  PHP验证信用卡卡号是否正确函数

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

WBOY
WBOYOriginal
2016-06-06 20:03:541134browse

这篇文章主要介绍了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 9 ) $digit = $digit - 9 ; $sum = $sum + $digit ; } $valid = ( $sum % 10 == 0 ) ; return $valid ; } return false ; }

Statement:
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