Copyleaks Plagiarism Checker - PHP SDK.
Copyleaks SDK is a simple framework that allows you to scan text for plagiarism and detect content distribution online, using the Copyleaks plagiarism checker cloud.
Using Copyleaks SDK you can check for plagiarism in:
Install using Packagist
composer require copyleaks/php-plagiarism-checker
To use the Copyleaks API you need to first be a registered user. The registration to Copyleaks takes a minute and is free of charge. Signup and make sure to confirm your account.
As a signed user you can generate your personal API key. Do so on your dashboard home under ‘API Access Credentials’.
For more information check out our API guide.
include_once('vendor/copyleaks/php-plagiarism-checker/autoload.php');
use Copyleaks\Copyleaks;
$copyleaks = new Copyleaks();
$loginResult = $copyleaks->login(<your email>,<your api key>);
echo json_encode($loginResult);
CopyleaksConfig::SET_IDENTITY_SERVER_URI("<your identity server URI>");
CopyleaksConfig::SET_API_SERVER_URI("<your API server URI>");
See demo.php under demo folder for an example.