<?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 => 'uk',
  ),
  'this' => 
  array (
    0 => 'features.gc.php',
    1 => 'Garbage Collection',
    2 => 'Garbage Collection',
  ),
  'up' => 
  array (
    0 => 'features.php',
    1 => 'Можливості',
  ),
  'prev' => 
  array (
    0 => 'features.commandline.ini.php',
    1 => 'INI settings',
  ),
  'next' => 
  array (
    0 => 'features.gc.refcounting-basics.php',
    1 => 'Reference Counting Basics',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    '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">Garbage Collection</h1>
<h2>Зміст</h2><ul class="chunklist chunklist_chapter"><li><a href="features.gc.refcounting-basics.php">Reference Counting Basics</a></li><li><a href="features.gc.collecting-cycles.php">Collecting Cycles</a></li><li><a href="features.gc.performance-considerations.php">Performance Considerations</a></li></ul>


  <p class="para">
   This section explains the merits of the new Garbage Collection (also known
   as GC) mechanism that is part of PHP 5.3.
  </p>

  

  

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