mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
added example
added see alsos git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@79313 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
fe74db7049
commit
4bf34401d3
1 changed files with 22 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.62 -->
|
||||
<refentry id="function.mysql-get-host-info">
|
||||
<refnamediv>
|
||||
|
@ -19,8 +19,28 @@
|
|||
name. If <parameter>link_identifier</parameter> is omitted, the
|
||||
last opened connection will be used.
|
||||
</para>
|
||||
<example>
|
||||
<title>mysql_get_host_info Example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
printf ("MySQL host info: %s\n", mysql_get_host_info());
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
<para>
|
||||
The above example would produce the following output:
|
||||
</para>
|
||||
<screen>
|
||||
<![CDATA[
|
||||
MySQL host info: Localhost via UNIX socket
|
||||
]]>
|
||||
</screen>
|
||||
</example>
|
||||
<para>
|
||||
<function>mysql_get_host_info</function> was added in PHP 4.0.5.
|
||||
See also: <function>mysql_get_client_info</function>,
|
||||
<function>mysql_get_proto_info</function> and
|
||||
<function>mysql_get_server_info</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
|
Loading…
Reference in a new issue