mhoffmann / phpdnsrbl
simple DNSRBL lookup
0.1.1
2017-05-19 03:13 UTC
Requires
- php: >=5.3.0
- doctrine/cache: ^1.5
Requires (Dev)
- phpunit/phpunit: 4.5.0
This package is not auto-updated.
Last update: 2026-04-12 09:07:32 UTC
README
Simple DNSRBL lookup forked from jbboehr/dnsbl.php
Installation
With composer
{
"require": {
"mhoffmann/dnsrbl": "0.1.*"
}
}
Usage
$rbl = new DNSRBL( array( 'dnsbl' => array( 'sbl.spamhaus.org' ), 'surbl' => array( 'dbl.spamhaus.org' ) ) ); //checks the surbl var_export($rbl->isListed('dbltest.com')); echo ";\n"; //checks the dnsbl var_export($rbl->getListingBlacklists('127.0.0.2')); echo ";\n";
true; array ( 0 => 'sbl.spamhaus.org', );
License
This project is licensed under the PHP license.