PHP 클래스 Faker\Calculator\Luhn

Luhn algorithm is used to validate credit card numbers, IMEI numbers, and National Provider Identifier numbers.
또한 보기: http://en.wikipedia.org/wiki/Luhn_algorithm
파일 보기 프로젝트 열기: fzaninotto/faker 1 사용 예제들

공개 메소드들

메소드 설명
computeCheckDigit ( $partialNumber ) : string
generateLuhnNumber ( $partialValue ) : string Generate a Luhn compliant number.
isValid ( string $number ) : boolean Checks whether a number (partial number + check digit) is Luhn compliant

비공개 메소드들

메소드 설명
checksum ( string $number ) : integer

메소드 상세

computeCheckDigit() 공개 정적인 메소드

public static computeCheckDigit ( $partialNumber ) : string
$partialNumber
리턴 string

generateLuhnNumber() 공개 정적인 메소드

Generate a Luhn compliant number.
public static generateLuhnNumber ( $partialValue ) : string
리턴 string

isValid() 공개 정적인 메소드

Checks whether a number (partial number + check digit) is Luhn compliant
public static isValid ( string $number ) : boolean
$number string
리턴 boolean