<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.sqlite3.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'sqlite3.version.php',
    1 => 'SQLite3::version',
    2 => 'Returns the SQLite3 library version as a string constant and as a number',
  ),
  'up' => 
  array (
    0 => 'class.sqlite3.php',
    1 => 'SQLite3',
  ),
  'prev' => 
  array (
    0 => 'sqlite3.setauthorizer.php',
    1 => 'SQLite3::setAuthorizer',
  ),
  'next' => 
  array (
    0 => 'class.sqlite3exception.php',
    1 => 'SQLite3Exception',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/sqlite3/sqlite3/version.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="sqlite3.version" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SQLite3::version</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">SQLite3::version</span> &mdash; <span class="dc-title">
   Returns the SQLite3 library version as a string constant and as a number
  </span></p>

 </div>

 <div class="refsect1 description" id="refsect1-sqlite3.version-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="modifier">static</span> <span class="methodname"><strong>SQLite3::version</strong></span>(): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Returns the SQLite3 library version as a string constant and as a number.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-sqlite3.version-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">Diese Funktion besitzt keine Parameter.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-sqlite3.version-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Returns an associative array with the keys &quot;versionString&quot; and
   &quot;versionNumber&quot;.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-sqlite3.version-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-2143">
    <p><strong>Beispiel #1 <span class="function"><strong>SQLite3::version()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">SQLite3</span><span style="color: #007700">::</span><span style="color: #0000BB">version</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Das oben gezeigte Beispiel erzeugt
eine ähnliche Ausgabe wie:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [versionString] =&gt; 3.5.9
    [versionNumber] =&gt; 3005009
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>


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