1. Go to this page and download the library: Download parseword/sfsquery 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/ */
parseword / sfsquery example snippets
use parseword\SFSQuery\SFSQuery;
if ((new SFSQuery($_SERVER['REMOTE_ADDR']))->wasReportedInPastDays(7)) {
header('HTTP/1.1 403 Forbidden');
echo "Sorry, you don't have access to this resource.";
exit;
}
else {
//Process the action
}
use parseword\SFSQuery\SFSQuery;
$sfs = new SFSQuery($_SERVER['REMOTE_ADDR']);
if ($sfs->wasReportedInPastDays(30) && $sfs->getConfidence() > 25) {
//Reject the comment
exit;
}
else {
//Process the comment
}
use parseword\SFSQuery\SFSQuery;
$sfs = new SFSQuery($_SERVER['REMOTE_ADDR']);
if ($sfs->getFrequency() > 10 && $sfs->getCountry() == 'ru') {
//Reject the comment
exit;
}
else {
//Process the comment
}
use parseword\SFSQuery\SFSQuery;
$sfs = new SFSQuery($_SERVER['REMOTE_ADDR']);
$sfs->setQueryMethod(SFSQuery::QUERYMETHOD_DNS);
if ($sfs->wasReportedInPastDays(7) && $sfs->getConfidence() > 50) {
//Reject the comment
exit;
}
else {
//Process the comment
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.