PHP code example of unicheck / unicheck-corp-php-sdk
1. Go to this page and download the library: Download unicheck/unicheck-corp-php-sdk 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/ */
unicheck / unicheck-corp-php-sdk example snippets
//create Unicheck client
$unicheck = new Unicheck('YOUR-API-KEY', 'YOUR-API-SECRET');
//upload file
$file = $unicheck->fileUpload(PayloadFile::bin($testText), 'txt');
//start check
$checkParam = new CheckParam($file['id']);
$checkParam->setType(CheckParam::TYPE_WEB);
$check = $unicheck->checkCreate($checkParam);
echo 'Check started!' . PHP_EOL;
var_dump($check);
bash
#Require Unicheck sdk
php composer.phar