2017 © Pedro Peláez
 

library dnsbl

DNSBL lookup

image

jbboehr/dnsbl

DNSBL lookup

  • Tuesday, February 6, 2018
  • by jbboehr
  • Repository
  • 1 Watchers
  • 3 Stars
  • 35,299 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 2 Versions
  • 12 % Grown

The README.md

dnsbl.php

GitHub Build Status, (*1)

Simplified version of PEAR's Net_DNSBL with PEAR dependencies removed., (*2)

Installation

With composer, (*3)

{
    "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., (*4)

The Versions

06/02 2018

dev-master

9999999-dev http://github.com/jbboehr/dnsbl

DNSBL lookup

  Sources   Download

PHP PHP-3.01

The Requires

  • php >=5.3.0

 

dnsbl

28/01 2015

v0.1.0

0.1.0.0 http://github.com/jbboehr/dnsbl

DNSBL lookup

  Sources   Download

PHP

The Requires

  • php >=5.3.0

 

dnsbl