mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 18:38:55 +00:00

#sorry for this big commit... git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@171734 c90b9560-bf6c-de11-be94-00142212c4b1
78 lines
2 KiB
XML
78 lines
2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.5 $ -->
|
|
<refentry id="function.mysqli-get-client-version">
|
|
<refnamediv>
|
|
<refname>mysqli_get_client_version</refname>
|
|
<refpurpose>Get MySQL client info</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>int</type><methodname>mysqli_get_client_version</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
Returns client version number as an integer.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1>
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
A number that represents the MySQL client library version in format:
|
|
<literal>main_version*10000 + minor_version *100 + sub_version</literal>.
|
|
For example, 4.1.0 is returned as 40100.
|
|
</para>
|
|
<para>
|
|
This is useful to quickly determine the version of the client library
|
|
to know if some capability exits.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1>
|
|
&reftitle.seealso;
|
|
<para>
|
|
<function>mysqli_get_client_info</function>,
|
|
<function>mysqli_get_server_info</function>&listendand;
|
|
<function>mysqli_get_server_version</function>.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1>
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>mysqli_get_client_version</title>
|
|
<programlisting role='php'>
|
|
<![CDATA[
|
|
<?php
|
|
|
|
/* We don't need a connection to determine
|
|
the version of mysql client library */
|
|
|
|
printf("Client library version: %d\n", mysqli_get_client_version());
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</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
|
|
-->
|