PHP code example of akong / fingerprint_matching

1. Go to this page and download the library: Download akong/fingerprint_matching 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/ */

    

akong / fingerprint_matching example snippets



use FingerprintMatching\FingerPrintServer;
use FingerprintMatching\DriverNameServer;

$driver = FingerPrintServer::instance()->loadDriver(DriverNameServer::FGTIT);

$driver->comparedOne("{$code1}", "{$code2}");


use FingerprintMatching\FingerPrintServer;
use FingerprintMatching\DriverNameServer;

$driver = FingerPrintServer::instance()->loadDriver(DriverNameServer::FGTIT);
$driver->comparedMany("{$code}", "{$codeArr}");


...
$driver->setUpSafeMode();
...


...
$driver->setScope("{通过分数}");
...