<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/sqlite3.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'sqlite3.installation.php',
    1 => 'Installation',
    2 => 'Installation',
  ),
  'up' => 
  array (
    0 => 'sqlite3.setup.php',
    1 => 'Installing/Configuring',
  ),
  'prev' => 
  array (
    0 => 'sqlite3.requirements.php',
    1 => 'Requirements',
  ),
  'next' => 
  array (
    0 => 'sqlite3.configuration.php',
    1 => 'Runtime Configuration',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/sqlite3/configure.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="sqlite3.installation" class="section">
 <h2 class="title">Installation</h2>
 <p class="para">
  The SQLite3 extension is enabled by default. It&#039;s
  possible to disable it by using <code class="literal">--without-sqlite3</code>
  at compile time.
 </p>
 <p class="para">
  Windows users must enable <var class="filename">php_sqlite3.dll</var>
  in order to use this extension. This <abbr title="Dynamic Link Library">DLL</abbr> is
  included with Windows distributions of PHP.
 </p>
 <blockquote class="note"><p><strong class="note">Note</strong>: 
  <strong>Additional setup on Windows as of PHP 7.4.0</strong><br />
  <p class="para">
   In order for this extension to work, there are
<abbr title="Dynamic Link Library">DLL</abbr> files that must be available to the Windows
system <var class="envar">PATH</var>. For information on how to do this, see the
<abbr title="Frequently Asked Questions">FAQ</abbr> entitled &quot;<a href="faq.installation.php#faq.installation.addtopath" class="link">How do I add my PHP directory to the PATH
on Windows</a>&quot;. Although copying DLL
files from the PHP folder into the Windows system directory also works
(because the system directory is by default in the system&#039;s
<var class="envar">PATH</var>), this is not recommended.
<em>This extension requires the following files to be in the
<var class="envar">PATH</var>:</em>  <var class="filename">libsqlite3.dll</var>.
  </p>
 </p></blockquote>
</div><?php manual_footer($setup); ?>