Source of: /manual/en/migration52.new-extensions.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/migration52.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'migration52.new-extensions.php',
1 => 'New Extensions',
),
'up' =>
array (
0 => 'migration52.php',
1 => 'Migrating from PHP 5.1.x to PHP 5.2.x',
),
'prev' =>
array (
0 => 'migration52.removed-extensions.php',
1 => 'Removed Extensions',
),
'next' =>
array (
0 => 'migration52.classes.php',
1 => 'New Classes',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="migration52.new-extensions" class="section">
<h2 class="title">New Extensions</h2>
<p class="para">
The following are new extensions added (by default) as of PHP 5.2.0:
</p>
<ul class="itemizedlist">
<li class="listitem">
<span class="simpara">
<a href="ref.filter.php" class="link">Filter</a>
- validates and filters data, and is designed for use with insecure
data such as user input. This extension is enabled by default; the
default mode RAW does not impact input data in any way.
</span>
</li>
<li class="listitem">
<span class="simpara">
<a href="ref.json.php" class="link">JSON</a>
- implements the JavaScript Object Notation (JSON)
data interchange format. This extension is enabled by default.
</span>
</li>
<li class="listitem">
<span class="simpara">
<a href="ref.zip.php" class="link">Zip</a>
- enables you to transparently read or write ZIP
compressed archives and the files inside them.
</span>
</li>
</ul>
</div><?php manual_footer(); ?>