PHP code example of cbtech / akismet-php
1. Go to this page and download the library: Download cbtech/akismet-php 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/ */
cbtech / akismet-php example snippets
use CBTECH\Akismet\Akismet;
$akismet = new Akismet('YOUR-AKISMET-KEY','YOUR-WEBSITE-URL');
// Check if the Akismet key is valid
$isValidKey = $akismet->verifyKey();
var_dump($isValidKey);
// Check if a comment is spam
$params = [
'is_test' => 1,
'user_ip' => '123.123.123.123',
'user_agent' => 'blablabla',
'comment_author' => 'viagra-test-123',
'coment_content' => 'Hello. This is a spam message. Cheap viagra. Sale.'
];
$isSpamComment = $akismet->commentCheck($params);
var_dump($isSpamComment);
json
"cbtech/akismet-php": "0.0.2"
user_ip
user_agent
user_role
user_ip
user_agent
user_ip
user_agent