<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.mysqli.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'mysqli.get-client-info.php',
    1 => 'mysqli::$client_info',
    2 => 'Liefert die Version des MySQL-Clients als Zeichenkette',
  ),
  'up' => 
  array (
    0 => 'class.mysqli.php',
    1 => 'mysqli',
  ),
  'prev' => 
  array (
    0 => 'mysqli.get-charset.php',
    1 => 'mysqli::get_charset',
  ),
  'next' => 
  array (
    0 => 'mysqli.get-client-version.php',
    1 => 'mysqli::$client_version',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/mysqli/mysqli/get-client-info.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="mysqli.get-client-info" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">mysqli::$client_info</h1>
  <h1 class="refname">mysqli::get_client_info</h1>
  <h1 class="refname">mysqli_get_client_info</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">mysqli::$client_info</span> -- <span class="refname">mysqli::get_client_info</span> -- <span class="refname">mysqli_get_client_info</span> &mdash; <span class="dc-title">Liefert die Version des MySQL-Clients als Zeichenkette</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-mysqli.get-client-info-description">
  <h3 class="title">Beschreibung</h3>
  <p class="para">Objektorientierter Stil</p>
  <div class="fieldsynopsis"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <var class="varname"><a href="mysqli.get-client-info.php">$mysqli-&gt;client_info</a></var>;</div>

  <div class="methodsynopsis dc-description">
   <span class="attribute"><a href="class.deprecated.php">#[\Deprecated]</a> </span><br>
   <span class="modifier">public</span> <span class="methodname"><strong>mysqli::get_client_info</strong></span>(): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">Prozeduraler Stil</p>
  <div class="methodsynopsis dc-description"><span class="methodname"><strong>mysqli_get_client_info</strong></span>(<span class="methodparam"><span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="class.mysqli.php" class="type mysqli">mysqli</a></span></span> <code class="parameter">$mysql</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   Gibt eine Zeichenkette zurück, die die Version der MySQL-Client-Bibliothek
   angibt.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-mysqli.get-client-info-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">Diese Funktion besitzt keine Parameter.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-mysqli.get-client-info-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt eine Zeichenkette zurück, die die Version der MySQL-Client-Bibliothek
   darstellt.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-mysqli.get-client-info-changelog">
  <h3 class="title">Changelog</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Beschreibung</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.1.0</td>
      <td>
       Der Aufruf von <span class="function"><strong>mysqli_get_client_info()</strong></span> mit dem
       Parameter <code class="parameter">mysql</code> ist veraltet. Diese Funktion
       benötigte nie einen Parameter, sondern ließ ihn fälschlicherweise als
       optionalen Parameter zu.
      </td>
     </tr>

     <tr>
      <td>8.1.0</td>
      <td>
       Der objektorientierte Stil
       <span class="methodname"><strong>mysqli::get_client_info()</strong></span> ist veraltet.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-mysqli.get-client-info-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 mysqli_get_client_info</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">/* Es wird keine Verbindung benötigt, um die<br />   Version der MySQL-Client-Bibliothek zu ermitteln */<br /><br /></span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"Version der Client-Bibliothek: %s\n"</span><span style="color: #007700">, </span><span style="color: #0000BB">mysqli_get_client_info</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-mysqli.get-client-info-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="mysqli.get-client-version.php" class="function" rel="rdfs-seeAlso">mysqli_get_client_version()</a> - Liefert die Version des MySQL-Clients als Integer</span></li>
    <li><span class="function"><a href="mysqli.get-server-info.php" class="function" rel="rdfs-seeAlso">mysqli_get_server_info()</a> - Liefert die Version des MySQL-Servers</span></li>
    <li><span class="function"><a href="mysqli.get-server-version.php" class="function" rel="rdfs-seeAlso">mysqli_get_server_version()</a> - Liefert die Version des MySQL-Servers als Integer</span></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>