nurmanhabib / nik-parser
Parsing of NIK
v1.0.0
2021-10-14 15:32 UTC
Requires
- nesbot/carbon: ^2.53
README
NIK Parser is used to parse a Population Identification Number that is valid in Indonesia or commonly called NIK. NIK is an arrangement of numbers that have meaning. Each NIK may contain information:
- Area of origin (village, sub-district, city/district, and provincial level)
- Sex (male or female)
- Date of birth
This process only relies on information from the ID code, there is no need to connect to the Dukcapil service. Especially for parsing the area of origin requires a valid area database issued by the Ministry of Home Affairs (I am currently developing it)
Installation
Use the package manager composer to install nik-parser.
composer require nurmanhabib/nik-parser
Usage
<?php require "vendor/autoload.php"; use Nurmanhabib\NIKParser\NIKParser; $nik = "1050245708900001"; $parser = new NIKParser($nik); echo $parser->getDateOfBirth()->toDateString(); // Output: 1990-08-17 echo $parser->getSex(); // Output: female
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.