<?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 => 'ja',
  ),
  'this' => 
  array (
    0 => 'migration70.sapi-changes.php',
    1 => 'SAPI モジュールの変更',
    2 => 'SAPI モジュールの変更',
  ),
  'up' => 
  array (
    0 => 'migration70.php',
    1 => 'PHP 5.6.x から PHP 7.0.x への移行',
  ),
  'prev' => 
  array (
    0 => 'migration70.constants.php',
    1 => '新しいグローバル定数',
  ),
  'next' => 
  array (
    0 => 'migration70.removed-exts-sapis.php',
    1 => '削除された拡張モジュールおよび SAPI',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    '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">SAPI モジュールの変更</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">
    制限のない <a href="install.fpm.configuration.php#listen" class="link">listen</a> ポートは、
    IPv4 と IPv6 の両方をリスンするようになりました。
   </h4>

   <p class="para">
    PHP 5 では、<a href="install.fpm.configuration.php#listen" class="link">listen</a> ディレクティブにポート番号だけを指定した場合は、
    すべてのインターフェイス上で IPv4 だけをリスンしていました。PHP 7 では、
    IPv4 と IPv6 の両方のリクエストを受け付けるようになります。
   </p>

   <p class="para">
    特定の IP アドレスを指定しているディレクティブには何も影響を及ぼしません。
    IP アドレスを指定している場合は、そのアドレスとプロトコルだけを受け付けます。
   </p>
  </div>
 </div>
</div><?php manual_footer($setup); ?>