php-doc-en/reference/maxdb/functions/maxdb-get-client-version.xml

92 lines
2.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.maxdb-get-client-version">
<refnamediv>
<refname>maxdb_get_client_version</refname>
<refpurpose>Get MaxDB client info</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>int</type><methodname>maxdb_get_client_version</methodname>
<void/>
</methodsynopsis>
<para>
Returns client version number as an integer.
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
A number that represents the MaxDB client library version in format:
<literal>main_version*10000 + minor_version *100 + sub_version</literal>.
For example, 7.5.0 is returned as 70500.
</para>
<para>
This is useful to quickly determine the version of the client library
to know if some capability exists.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>maxdb_get_client_version</title>
<programlisting role="php">
<![CDATA[
<?php
/* We don't need a connection to determine
the version of MaxDB client library */
printf("Client library version: %d\n", maxdb_get_client_version());
?>
]]>
</programlisting>
</example>
</para>
&example.outputs.similar;
<screen>
<![CDATA[
Client library version: 7.<...>
]]>
</screen>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>maxdb_get_client_info</function></member>
<member><function>maxdb_get_server_info</function></member>
<member><function>maxdb_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
-->