I'm working on creating a new type of email protocol, and in order to do that I had to set up an SRV DNS record for my domain.

In promoting this protocol, I'll need to be able to discover if a given host uses my system (and if not fall back to an older protocol).

So, is there a way to pull a DNS record (such as SRV) using PHP without using a PECL extension or running it through the linux command line (I already know I can ob_start() and system("host -t SRV hostname") but I'm looking for a better way, if it exists.)

link|improve this question

This was asked before here stackoverflow.com/questions/313880/srv-record-lookup-with-php – Mark May 25 '10 at 20:25
feedback

2 Answers

up vote 1 down vote accepted

Use dns_get_record

array dns_get_record  (  string $hostname  [,  int $type = DNS_ANY  [,  array &$authns  [,  array &$addtl  ]]] )

Fetch DNS Resource Records associated with the given hostname.

link|improve this answer
Thats only for getting an IP address, not returning DNS records. – Navarr May 25 '10 at 18:57
You are right, I fixed it :"> – nc3b May 25 '10 at 18:58
Thanks, I noticed that function when I went to the function page for gethostbyname, lol. Its a new function. You've been a great help. – Navarr May 25 '10 at 19:00
feedback

Have you considered PEAR::Net_DNS?
http://pear.php.net/package/Net_DNS

As far as I can tell it uses socket connections (tcp/udp) and decodes the resolver data itself. The available methods look pretty extensive.

link|improve this answer
When I said without PECL I also meant without PEAR. I'm on shared hosting so its kind of a pain to set either up. – Navarr May 27 '10 at 10:32
You can download PEAR classes individually. There's no need for server-wide installation through pecl or pear. It's actually quite common to use extracted PEAR classes project-locally. This one in particular is dependency-free. – mario May 27 '10 at 11:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.