<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/migration73.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'migration73.windows-support.php',
    1 => 'Windows のサポート',
    2 => 'Windows のサポート',
  ),
  'up' => 
  array (
    0 => 'migration73.php',
    1 => 'PHP 7.2.x から PHP 7.3.x への移行',
  ),
  'prev' => 
  array (
    0 => 'migration73.other-changes.php',
    1 => 'その他の変更',
  ),
  'next' => 
  array (
    0 => 'migration72.php',
    1 => 'PHP 7.1.x から PHP 7.2.x への移行',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'appendices/migration73/windows-support.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="migration73.windows-support" class="sect1">
 <h2 class="title">Windows のサポート</h2>

 <div class="sect2" id="migration73.windows-support.core">
  <h3 class="title">PHP コア</h3>

  <div class="sect3" id="migration73.windows-support.core.file-descriptors">
   <h4 class="title">POSIX にさらに準拠したファイルの削除</h4>

   <p class="para">
    ファイルディスクリプタは、共有 read/write/delete
    モードでオープンされるのがデフォルトになりました。
    これにより、<abbr class="abbrev">POSIX</abbr>
    のセマンティクスに効率的に対応しつつ、使用中のファイルハンドルを削除することが可能になります。これは
    <abbr class="abbrev">POSIX</abbr> に 100%
    準拠したものではありませんが、プラットフォームごとの違いはまだ存在します。ファイルハンドルを削除した後は、オープン済みの全てのファイルハンドルが閉じられるまで、ファイル名のエントリはブロックされます。
   </p>
  </div>

 </div>

</div><?php manual_footer($setup); ?>