Simplified version of PEAR's Net_DNSBL with PEAR dependencies removed.
With composer
{
"require": {
"jbboehr/dnsbl": "0.1.*"
}
}
$dnsbl = new \DNSBL\DNSBL(array(
'blacklists' => array(
'bl.spamcop.net'
)
));
var_export($dnsbl->isListed('127.0.0.2')); echo ";\n";
var_export($dnsbl->getListingBlacklists('127.0.0.2')); echo ";\n";
true;
array (
0 => 'bl.spamcop.net',
);
This project is licensed under the PHP license.