PHP code example of fawno / face-relations

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

    

fawno / face-relations example snippets


  use Fawno\FaceRelations\apiRelations;

  // Check NIF
  $nif = 'S3100015A';
  $result = apiRelations::nif_validation($nif) ? 'Valid' : 'Invalid';

  // Get relations by NIF (CIF)
  var_dump(apiRelations::query(['cif' => 'ESS3100015A']));

  // Get relations by OC
  var_dump(apiRelations::query(['oc' => 'GE0001267']));

  // Get relations by OG
  var_dump(apiRelations::query(['og' => 'A15002920']));

  // Get relations by UT
  var_dump(apiRelations::query(['ut' => 'A15007700']));

  // Get relations by NIF, OC, OG and UT
  var_dump(apiRelations::query(['cif' => 'S3100015A', 'oc' => 'GE0001267', 'og' => 'A15002920', 'ut' => 'A15007701']));