dbfx/php-disposable-domains

用于PHP应用程序的快速可丢弃电子邮件域名列表。

dev-master / 1.0.x-dev 2019-04-30 13:25 UTC

This package is auto-updated.

Last update: 2024-08-29 03:36:29 UTC


README

Code Climate Issue Count

一个PHP类,用于检查从各种来源收集的可丢弃电子邮件域名。

用法

use DisposableEmail\DomainList\DomainList;
$list = new DomainList;

 
// Return true/false for a domain you want to check
$list->search("mailinator.com");
 
// Get the entire list as an array 
$fullList = $list->load();