<?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 => 'zh',
  ),
  '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' => 'zh',
    '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">
    文件描述符默认以共享读/写/删除模式打开。这有效地映射了 <abbr class="abbrev">POSIX</abbr>
    语义，并允许在使用句柄时删除文件。它不完全相同，一些平台差异仍然存在。在删除之后，将阻塞文件名条目，直到所有打开的句柄都已关闭。
   </p>
  </div>

 </div>

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