Skip to content

jbboehr/dnsbl.php

Repository files navigation

dnsbl.php

GitHub Build Status

Simplified version of PEAR's Net_DNSBL with PEAR dependencies removed.

Installation

With composer

{
    "require": {
        "jbboehr/dnsbl": "0.1.*"
    }
}

Usage

$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',
);

License

This project is licensed under the PHP license.