mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
- Fix XML
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@105580 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
083d647c03
commit
c7c7904bcf
1 changed files with 23 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<refentry id="function.dns-get-record">
|
||||
<refnamediv>
|
||||
<refname>dns_get_record</refname>
|
||||
|
@ -16,18 +16,27 @@
|
|||
<methodparam choice="opt"><type>array</type><parameter>&authns</parameter></methodparam>
|
||||
<methodparam><type>array</type><parameter>&addtl</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<note>
|
||||
This function is not implemented on Windows platforms.
|
||||
</note>
|
||||
<para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function is not implemented on Windows platforms.
|
||||
</simpara>
|
||||
</note>
|
||||
</para>
|
||||
<para>
|
||||
Returns an array of associative arrays. Each associative array contains
|
||||
<emphasis>at minimum</emphasis> the following keys: host, type, class, ttl.
|
||||
<note>
|
||||
<para>
|
||||
'class' key will always be "IN" indicating an IPv4 resource record.
|
||||
</para>
|
||||
</note>
|
||||
<note>
|
||||
'ttl' key will contain the TTL <emphasis>remaining</emphasis> since the
|
||||
last time the local nameserver queried the authoritative name server.
|
||||
<para>
|
||||
'ttl' key will contain the TTL <emphasis>remaining</emphasis> since
|
||||
the last time the local nameserver queried the authoritative name
|
||||
server.
|
||||
</para>
|
||||
</note>
|
||||
Depending on the value of type, the associate array will also contain one or
|
||||
more of the following keys: ip, pri, target, cpu, os, mname, rname, serial, refresh,
|
||||
|
@ -51,10 +60,12 @@
|
|||
<constant>DNS_ALL</constant> or <constant>DNS_ANY</constant>.
|
||||
The default is <emphasis>DNS_ANY</emphasis>.
|
||||
<note>
|
||||
<para>
|
||||
Because of excentricities in the performance of libresolv
|
||||
between platforms, <constant>DNS_ANY</constant> will not
|
||||
always return every record, the slower <constant>DNS_ALL</constant>
|
||||
will collect all records more reliably.
|
||||
</para>
|
||||
</note>
|
||||
</para>
|
||||
<simpara>
|
||||
|
@ -72,10 +83,12 @@
|
|||
zone. 'serial', 'refresh', 'retry', 'expire', and 'minimum-ttl' give
|
||||
the traditional SOA zone values one would expect.
|
||||
<note>
|
||||
Per DNS standards, email addresses are given in user.host format (for
|
||||
example: hostmaster.example.com as opposed to hostmaster@example.com),
|
||||
be sure to check this value and modify if necessary before using it with
|
||||
a functions such as <function>mail</function>.
|
||||
<para>
|
||||
Per DNS standards, email addresses are given in user.host format (for
|
||||
example: hostmaster.example.com as opposed to hostmaster@example.com),
|
||||
be sure to check this value and modify if necessary before using it
|
||||
with a functions such as <function>mail</function>.
|
||||
</para>
|
||||
</note>
|
||||
</para>
|
||||
<simpara>
|
||||
|
|
Loading…
Reference in a new issue