Source of: /manual/en/migration53.new-extensions.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/migration53.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'migration53.new-extensions.php',
1 => 'New Extensions',
),
'up' =>
array (
0 => 'migration53.php',
1 => 'Migrating from PHP 5.2.x to PHP 5.3.x',
),
'prev' =>
array (
0 => 'migration53.methods.php',
1 => 'New Methods',
),
'next' =>
array (
0 => 'migration53.removed-extensions.php',
1 => 'Removed Extensions',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="migration53.new-extensions" class="section">
<h2 class="title">New Extensions</h2>
<p class="simpara">
The following new extensions are added (by default) as of PHP 5.3.0:
</p>
<ul class="itemizedlist">
<li class="listitem">
<span class="simpara">
<a href="book.enchant.php" class="link">Enchant</a>
- An abstraction layer above various spelling libraries
</span>
</li>
<li class="listitem">
<span class="simpara">
<a href="book.fileinfo.php" class="link">Fileinfo</a>
- An improved and more solid replacement, featuring full BC, for the
<a href="book.mime-magic.php" class="link">Mimetype</a> extension, which has been
removed.
</span>
</li>
<li class="listitem">
<span class="simpara">
<a href="book.intl.php" class="link">INTL</a>
- Internationalization extension. INTL is a wrapper around the
<a href="http://www.icu-project.org/" class="link external">» ICU</a> library.
</span>
</li>
<li class="listitem">
<span class="simpara">
<a href="book.phar.php" class="link">Phar</a>
- Implementation of PHP-Archive files.
</span>
</li>
<li class="listitem">
<span class="simpara">
<a href="book.sqlite3.php" class="link">SQLite3</a>
- Support for SQLite version 3 databases.
</span>
</li>
</ul>
<p class="simpara">
mysqlnd is a new core library shipped with PHP. It is a PHP-specific
replacement for libmysql. mysqlnd will be used to build the
<a href="book.mysql.php" class="link">mysql</a>,
<a href="book.mysqli.php" class="link">mysqli</a>
and <a href="ref.pdo-mysql.php" class="link">PDO_MySQL</a> extensions if libmysql
isnt found on the system. It may also be used instead of libmysql even when
libmysql is present. mysqlnd is recommended for all PHP installations for
performance reasons.
</p>
</div><?php manual_footer(); ?>