<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/install.pecl.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'install.pecl.intro.php',
    1 => 'Introduction to PECL Installations',
    2 => 'Introduction to PECL Installations',
  ),
  'up' => 
  array (
    0 => 'install.pecl.php',
    1 => 'Installation of PECL extensions',
  ),
  'prev' => 
  array (
    0 => 'install.pecl.php',
    1 => 'Installation of PECL extensions',
  ),
  'next' => 
  array (
    0 => 'install.pecl.downloads.php',
    1 => 'Downloading PECL extensions',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'install/pecl.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="install.pecl.intro" class="sect1">
  <h2 class="title">Introduction to PECL Installations</h2>
  <blockquote class="note"><p><strong class="note">Nota</strong>: 
 <span class="simpara">
  PHP Installer for Extensions (<abbr>PIE</abbr>) is a new tool that will deprecate PECL.
  We recommend using PIE to install extensions.
  Find out more at <a href="https://github.com/php/pie" class="link external">&raquo;&nbsp;https://github.com/php/pie</a>
 </span>
</p></blockquote>
  <p class="simpara">
   <a href="https://pecl.php.net/" class="link external">&raquo;&nbsp;PECL</a> is a repository of PHP extensions that are made available via the
   <a href="https://pear.php.net/" class="link external">&raquo;&nbsp;PEAR</a>
   packaging system.
   This section of the manual is intended to demonstrate how to obtain and
   install PECL extensions.
  </p>
  <p class="simpara">
   These instructions assume <code class="literal">/path/to/php/src/dir/</code> is the
   path to the PHP source distribution and that <code class="literal">extname</code> is
   the name of the PECL extension. Adjust accordingly.
   These instructions also assume a familiarity with the
   <a href="https://pear.php.net/manual/en/guide.users.commandline.cli.php" class="link external">&raquo;&nbsp;pear command</a>.
   The information in the PEAR manual for the
   <strong class="command">pear</strong>
   command also applies to the
   <strong class="command">pecl</strong>
   command.
  </p>
  <p class="simpara">
   A shared extension must be built, installed, and loaded to be useful.
   The methods described below provide various instructions on how to build and
   install the extensions, but they do not automatically load them.
   Extensions can be loaded by adding an
   <a href="ini.core.php#ini.extension" class="link">extension</a>
   directive to the <var class="filename">php.ini</var> file or through the use of the
   <span class="function"><a href="function.dl.php" class="function">dl()</a></span>
   function.
  </p>
  <p class="simpara">
   When building PHP modules, it&#039;s important to have known-good versions of the
   required tools (autoconf, automake, libtool, etc.).
   See the
   <a href="https://www.php.net/git.php" class="link external">&raquo;&nbsp;Anonymous Git Instructions</a>
   for details on the required tools and required versions.
  </p>
 </div><?php manual_footer($setup); ?>