2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2003-02-15 01:05:22 +00:00
|
|
|
<!-- $Revision: 1.6 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/network.xml, last change in rev 1.2 -->
|
|
|
|
<refentry id="function.gethostbyname">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>gethostbyname</refname>
|
|
|
|
<refpurpose>
|
|
|
|
Get the IP address corresponding to a given Internet host name
|
|
|
|
</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type><methodname>gethostbyname</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>hostname</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
Returns the IP address of the Internet host specified by
|
2003-01-07 22:42:28 +00:00
|
|
|
<parameter>hostname</parameter> or a string containing the unmodified
|
|
|
|
<parameter>hostname</parameter> on failure.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
2003-02-15 01:05:22 +00:00
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title>A simple <function>gethostbyaddr</function> example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
$ip = gethostbyaddr($_SERVER['REMOTE_HOST']);
|
|
|
|
|
|
|
|
print $ip;
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
|
|
|
See also <function>gethostbyaddr</function>.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|