mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Delete duplicate page
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@343950 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
1c58fe76b0
commit
3c236fc956
3 changed files with 3 additions and 84 deletions
|
@ -1,83 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<refentry xml:id="mysqli.client-info" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli::$client_info</refname>
|
||||
<refname>mysqli_get_client_info</refname>
|
||||
<refpurpose>Get MySQL client info</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<para>&style.oop;</para>
|
||||
<fieldsynopsis><type>string</type><varname linkend="mysqli.client-info">mysqli->client_info</varname></fieldsynopsis>
|
||||
<para>&style.procedural;</para>
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>mysqli_get_client_info</methodname>
|
||||
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Returns a string that represents the MySQL client library version.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
A string that represents the MySQL client library version
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="examples">
|
||||
&reftitle.examples;
|
||||
<para>
|
||||
<example>
|
||||
<title>mysqli_get_client_info</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
||||
/* We don't need a connection to determine
|
||||
the version of mysql client library */
|
||||
|
||||
printf("Client library version: %s\n", mysqli_get_client_info());
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>mysqli_get_client_version</function></member>
|
||||
<member><function>mysqli_get_server_info</function></member>
|
||||
<member><function>mysqli_get_server_version</function></member>
|
||||
</simplelist>
|
||||
</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:"~/.phpdoc/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
|
||||
-->
|
|
@ -2,6 +2,7 @@
|
|||
<!-- $Revision$ -->
|
||||
<refentry xml:id="mysqli.get-client-info" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli::$client_info</refname>
|
||||
<refname>mysqli::get_client_info</refname>
|
||||
<refname>mysqli_get_client_info</refname>
|
||||
<refpurpose>Get MySQL client info</refpurpose>
|
||||
|
@ -10,6 +11,7 @@
|
|||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<para>&style.oop;</para>
|
||||
<fieldsynopsis><type>string</type><varname linkend="mysqli.get-client-info">mysqli->client_info</varname></fieldsynopsis>
|
||||
<methodsynopsis role="oop">
|
||||
<type>string</type><methodname>mysqli::get_client_info</methodname>
|
||||
<void />
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<entry>Gets the number of affected rows in a previous MySQL operation</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.client-info">$mysqli::client_info</link></entry>
|
||||
<entry><link linkend="mysqli.get-client-info">$mysqli::client_info</link></entry>
|
||||
<entry><function>mysqli_get_client_info</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the MySQL client version as a string</entry>
|
||||
|
|
Loading…
Reference in a new issue