<?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 => 'tr',
  ),
  'this' => 
  array (
    0 => 'migration73.windows-support.php',
    1 => 'Windows Support',
    2 => 'Windows Support',
  ),
  'up' => 
  array (
    0 => 'migration73.php',
    1 => 'Migrating from PHP 7.2.x to PHP 7.3.x',
  ),
  'prev' => 
  array (
    0 => 'migration73.other-changes.php',
    1 => 'Other Changes',
  ),
  'next' => 
  array (
    0 => 'migration72.php',
    1 => 'Migrating from PHP 7.1.x to PHP 7.2.x',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    '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 Support</h2>

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

  <div class="sect3" id="migration73.windows-support.core.file-descriptors">
   <h4 class="title">More POSIX Conforming File Deletion</h4>

   <p class="para">
    File descriptors are opened in shared read/write/delete mode by default.
    This effectively maps the <abbr class="abbrev">POSIX</abbr> semantics and allows to
    delete files with handles in use. It is not 100% same, some platform
    differences still persist. After the deletion, the filename entry is
    blocked, until all the opened handles to it are closed.
   </p>
  </div>

 </div>

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