mika56/spfcheck-dns-direct
最新稳定版本:2.0.2
Composer 安装命令:
composer require mika56/spfcheck-dns-direct
包简介
Provide a DNSRecordGetterInterface for using custom DNS servers for mika56/spfcheck
README 文档
README
Provides a DNSRecordGetterInterface to allow you to use custom DNS servers with mika56/spfcheck.
It uses purplepixie/phpdns to get the DNS records.
All the code was initially written by @btafoya and extracted from the main repository to this one.
Installation
Ensure you have mika56/spfcheck installed, then require mika56/spfcheck-dns-direct:
composer require "mika56/spfcheck-dns-direct:^2.0"
Usage
Instantiate a new Mika56\SPFCheckDNSDirect\DNSRecordGetterDirect object and pass it to your Mika56\SPFCheck\SPFCheck object:
<?php use Mika56\SPFCheck\SPFCheck; use Mika56\SPFCheckDNSDirect\DNSRecordGetterDirect; require('vendor/autoload.php'); $checker = new SPFCheck(new DNSRecordGetterDirect()); var_dump($checker->getIPStringResult('127.0.0.1', 'test.com'));
Note that by default, Google's 8.8.8.8 DNS servers are used. You can change this by passing arguments to the constructor:
public function __construct( string $nameserver = '8.8.8.8', int $port = 53, int $timeout = 30, bool $udp = true, bool $tcpFallback = true )
统计信息
- 总下载量: 59.31k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2022-08-28