<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/features.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'features.gc.php',
    1 => '垃圾回收',
    2 => '垃圾回收',
  ),
  'up' => 
  array (
    0 => 'features.php',
    1 => '特点',
  ),
  'prev' => 
  array (
    0 => 'features.commandline.ini.php',
    1 => 'INI 配置',
  ),
  'next' => 
  array (
    0 => 'features.gc.refcounting-basics.php',
    1 => '引用计数基础',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'zh',
    'path' => 'features/gc.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/features.gc.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="features.gc" class="chapter">
  <h1 class="title">垃圾回收</h1>
<h2>目录</h2><ul class="chunklist chunklist_chapter"><li><a href="features.gc.refcounting-basics.php">引用计数基础</a></li><li><a href="features.gc.collecting-cycles.php">回收循环</a></li><li><a href="features.gc.performance-considerations.php">性能方面考虑的因素</a></li></ul>


  <p class="para">
   本节介绍了新垃圾回收（也称为 GC）机制作为 PHP 5.3 一部分的优点。
  </p>

  

  

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