PHP code example of risan / ktp
1. Go to this page and download the library: Download risan/ktp library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
risan / ktp example snippets
// Include composer autoloder file.
r.
$ktp = new Ktp\Finder();
// Find a voter's data by it's NIK.
$data = $ktp->findByNik(1122330108901234);
// Voter's data is not found.
if (is_null($data)) {
die('Not found!');
}
print_r($data);
Array
(
[nik] => 1122330108901234
[name] => RISAN BAGJA
[jenis_kelamin] => LAKI-LAKI
[kelurahan] => KAMPUNG BARU
[kecamatan] => BANDA
[kabupaten_kota] => MALUKU TENGAH
[provinsi] => MALUKU UTARA
)