jbboehr/dnsbl

DNSBL lookup

v0.1.0 2015-01-28 00:38 UTC

This package is auto-updated.

Last update: 2024-04-05 09:19:53 UTC


README

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.