<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/migration70.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'migration70.sapi-changes.php',
    1 => 'Changes in SAPI Modules',
    2 => 'Changes in SAPI Modules',
  ),
  'up' => 
  array (
    0 => 'migration70.php',
    1 => 'Migrating from PHP 5.6.x to PHP 7.0.x',
  ),
  'prev' => 
  array (
    0 => 'migration70.constants.php',
    1 => 'New Global Constants',
  ),
  'next' => 
  array (
    0 => 'migration70.removed-exts-sapis.php',
    1 => 'Removed Extensions and SAPIs',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'appendices/migration70/sapi-changes.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="migration70.sapi-changes" class="sect1">
 <h2 class="title">Changes in SAPI Modules</h2>

 <div class="sect2" id="migration70.sapi-changes.fpm">
  <h3 class="title"><a href="book.fpm.php" class="link">FPM</a></h3>

  <div class="sect3" id="migration70.sapi-changes.fpm.listen">
   <h4 class="title">
    Unqualified <a href="install.fpm.configuration.php#listen" class="link">listen</a> ports now listen on both
    IPv4 and IPv6
   </h4>

   <p class="para">
    In PHP 5, a <a href="install.fpm.configuration.php#listen" class="link">listen</a> directive with only a
    port number would listen on all interfaces, but only on IPv4. PHP 7 will
    now accept requests made via both IPv4 and IPv6.
   </p>

   <p class="para">
    This does not affect directives which include specific IP addresses; these
    will continue to only listen on that address and protocol.
   </p>
  </div>
 </div>
</div><?php manual_footer($setup); ?>