jbboehr / dnsbl.php

DNSBL Lookup

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

DNSBL Lookup


Languages

Language:PHP 99.0%Language:Nix 1.0%