PHP code example of setono / bot-detection-bundle
1. Go to this page and download the library: Download setono/bot-detection-bundle 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/ */
setono / bot-detection-bundle example snippets
use Setono\BotDetectionBundle\BotDetector\BotDetectorInterface;
final class YourService
{
private BotDetectorInterface $botDetector;
public function __construct(BotDetectorInterface $botDetector)
{
$this->botDetector = $botDetector;
}
public function yourAction(): void
{
if ($this->botDetector->isBotRequest()) {
// do something to this bot!
}
// ...
}
}