PHP Classes

File: examples/allrecords.php

Recommend this page to a friend!
  Classes of Johnny Mast   Redbox DNS   examples/allrecords.php   Download  
File: examples/allrecords.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Redbox DNS
Resolve domains and get other DNS records
Author: By
Last change:
Date: 7 years ago
Size: 170 bytes
 

Contents

Class file image Download
<?php
require 'autoload.php';

$resolver = new \Redbox\DNS\Resolver();
$resolver->resolve('google.com', DNS_ALL);

/* This is a itteratable array */
print_r($resolver);