umitbilgin/tckimlikdogrula

使用PHP实现的土耳其身份证验证库

1.0 2020-02-17 02:32 UTC

This package is auto-updated.

Last update: 2024-09-17 13:16:55 UTC


README

PHP土耳其身份证号码验证库

安装

composer require umitbilgin/tckimlikdogrula

使用方法

require_once __DIR__ . "/vendor/autoload.php";

$dogrula = new \TCKimlikDogrula\TCKimlikDogrula;

if($dogrula->check("11111111111","ÜMİT","BİLGİN","2000")) {
    echo "TC Kimlik Numarası Doğrulandı";
} else {
    echo "TC Kimlik Numarası Hatalı";
}