<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.xdiff.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'xdiff.constants.php',
    1 => '预定义常量',
    2 => '预定义常量',
  ),
  'up' => 
  array (
    0 => 'book.xdiff.php',
    1 => 'xdiff',
  ),
  'prev' => 
  array (
    0 => 'xdiff.installation.php',
    1 => '安装',
  ),
  'next' => 
  array (
    0 => 'ref.xdiff.php',
    1 => 'xdiff 函数',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/xdiff/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="xdiff.constants" class="appendix">
 <h1 class="title">预定义常量</h1>

 <p class="simpara">下列常量由此扩展定义，且仅在此扩展编译入 PHP 或在运行时动态载入时可用。</p>
 <dl>
  
   <dt id="constant.xdiff-patch-normal">
    <strong><code><a href="xdiff.constants.php#constant.xdiff-patch-normal">XDIFF_PATCH_NORMAL</a></code></strong> 
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     This flag indicates that <span class="function"><a href="function.xdiff-string-patch.php" class="function">xdiff_string_patch()</a></span> and
     <span class="function"><a href="function.xdiff-file-patch.php" class="function">xdiff_file_patch()</a></span> functions should create result by
     applying patch to original content thus creating newer version of file. This is the default
     mode of operation.
    </span>
   </dd>
  
  
   <dt id="constant.xdiff-patch-reverse">
    <strong><code><a href="xdiff.constants.php#constant.xdiff-patch-reverse">XDIFF_PATCH_REVERSE</a></code></strong> 
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     This flag indicated that <span class="function"><a href="function.xdiff-string-patch.php" class="function">xdiff_string_patch()</a></span> and
     <span class="function"><a href="function.xdiff-file-patch.php" class="function">xdiff_file_patch()</a></span> functions should create result by
     reversing patch changed from newer content thus creating original version.
    </span>
   </dd>
  
 </dl>
</div>
<?php manual_footer($setup); ?>