PHP code example of harm-smits / webcrawler-verifier
1. Go to this page and download the library: Download harm-smits/webcrawler-verifier 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/ */
harm-smits / webcrawler-verifier example snippets
rAgent = 'Some user agent';
$ip = '192.168.0.1';
$webcrawlerVerifier = new \WebcrawlerVerifier\WebcrawlerVerifier();
$verifiedStatus = $webcrawlerVerifier->verify(
$userAgent,
$ip
);
if ($verifiedStatus === $webcrawlerVerifier::VERIFIED) {
echo 'Good webcrawler';
} elseif ($verifiedStatus === $webcrawlerVerifier::UNVERIFIED) {
echo 'Bad webcrawler';
} else {
// Alias `$verifiedStatus === $webcrawlerVerifier::UNKNOWN`
echo 'Unknown good or bad wecrawler';
}
// This file is generated by Composer
!empty($_SERVER['REMOTE_ADDR'])) {
$webcrawlerVerifier = new \WebcrawlerVerifier\WebcrawlerVerifier();
$verifiedStatus = $webcrawlerVerifier->verify(
$_SERVER['HTTP_USER_AGENT'],
$_SERVER['REMOTE_ADDR']
);
if ($verifiedStatus === $webcrawlerVerifier::VERIFIED) {
echo 'Good webcrawler';
} elseif ($verifiedStatus === $webcrawlerVerifier::UNVERIFIED) {
echo 'Bad webcrawler';
} else {
// Alias `$verifiedStatus === $webcrawlerVerifier::UNKNOWN`
echo 'Unknown good or bad wecrawler';
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.